final cleanup on submodules

This commit is contained in:
redmatrix 2016-09-05 21:08:40 -07:00
parent dbb4ccbcc0
commit 95d24f1d30
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,6 @@
<?php
namespace Zotlabs\Module;
use \Zotlabs\Storage\GitRepo as GitRepo;
/**
* @file mod/admin.php
@ -64,7 +63,7 @@ class Admin extends \Zotlabs\Web\Controller {
}
}
else {
$o = $this->admin_page_summary($a);
$o = $this->admin_page_summary();
}
if(is_ajax()) {
@ -84,7 +83,7 @@ class Admin extends \Zotlabs\Web\Controller {
* @param App &$a
* @return string HTML from parsed admin_summary.tpl
*/
function admin_page_summary(&$a) {
function admin_page_summary() {
// list total user accounts, expirations etc.
$accounts = array();

View File

@ -2,6 +2,7 @@
namespace Zotlabs\Module\Admin;
use \Zotlabs\Storage\GitRepo as GitRepo;
class Plugins {