diff --git a/mod/admin.php b/mod/admin.php index 3b5315ad59..1ae0490e8d 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -408,12 +408,12 @@ function admin_page_users(&$a){ $a->set_pager_itemspage(100); } - $users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro` , `lastitem`.`changed` AS `lastitem_date` + $users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro` , `lastitem`.`lastitem_date` FROM ( - SELECT `item`.`changed` , `item`.`uid` + SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid` FROM `item` - GROUP BY `uid` - ORDER BY `item`.`changed` + WHERE `item`.`type` = 'wall' + GROUP BY `item`.`uid` ) AS `lastitem` , `user` LEFT JOIN `contact` ON `user`.`uid` = `contact`.`uid` WHERE `user`.`verified` =1 @@ -534,6 +534,7 @@ function admin_page_plugins(&$a){ '$title' => t('Administration'), '$page' => t('Plugins'), '$toggle' => t('Toggle'), + '$settings' => t('Settings'), '$baseurl' => $a->get_baseurl(), '$plugin' => $plugin, diff --git a/view/admin_plugins_details.tpl b/view/admin_plugins_details.tpl index 4bce1dda2b..f3c0685f59 100644 --- a/view/admin_plugins_details.tpl +++ b/view/admin_plugins_details.tpl @@ -12,7 +12,7 @@ {{ if $admin_form }} -

Settings

+

$settings

$admin_form