diff options
Diffstat (limited to 'mod/admin.php')
-rw-r--r-- | mod/admin.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/admin.php b/mod/admin.php index 35e43252c..13cf371b0 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -590,6 +590,8 @@ function admin_page_dbsync(&$a) { function admin_page_queue($a) { $o = ''; + $expert = ((array_key_exists('expert',$_REQUEST)) ? intval($_REQUEST['expert']) : 0); + if($_REQUEST['drophub']) { require_once('hubloc.php'); hubloc_mark_as_down($_REQUEST['drophub']); @@ -620,7 +622,8 @@ function admin_page_queue($a) { '$empty' => t('Empty queue for this hub'), '$lastconn' => t('Last known contact'), '$hasentries' => ((count($r)) ? true : false), - '$entries' => $r + '$entries' => $r, + '$expert' => $expert )); return $o; |