removed calls to the remote_update funcions
This commit is contained in:
parent
20fe67f378
commit
7f80de6db8
|
@ -97,9 +97,6 @@ function admin_post(&$a){
|
||||||
case 'dbsync':
|
case 'dbsync':
|
||||||
admin_page_dbsync_post($a);
|
admin_page_dbsync_post($a);
|
||||||
break;
|
break;
|
||||||
case 'update':
|
|
||||||
admin_page_remoteupdate_post($a);
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -142,7 +139,6 @@ function admin_content(&$a) {
|
||||||
'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync"),
|
'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync"),
|
||||||
'queue' => Array($a->get_baseurl(true)."/admin/queue/", t('Inspect Queue'), "queue"),
|
'queue' => Array($a->get_baseurl(true)."/admin/queue/", t('Inspect Queue'), "queue"),
|
||||||
'federation' => Array($a->get_baseurl(true)."/admin/federation/", t('Federation Statistics'), "federation"),
|
'federation' => Array($a->get_baseurl(true)."/admin/federation/", t('Federation Statistics'), "federation"),
|
||||||
//'update' => Array($a->get_baseurl(true)."/admin/update/", t("Software Update") , "update")
|
|
||||||
);
|
);
|
||||||
|
|
||||||
/* get plugins admin page */
|
/* get plugins admin page */
|
||||||
|
@ -203,9 +199,6 @@ function admin_content(&$a) {
|
||||||
case 'dbsync':
|
case 'dbsync':
|
||||||
$o = admin_page_dbsync($a);
|
$o = admin_page_dbsync($a);
|
||||||
break;
|
break;
|
||||||
case 'update':
|
|
||||||
$o = admin_page_remoteupdate($a);
|
|
||||||
break;
|
|
||||||
case 'queue':
|
case 'queue':
|
||||||
$o = admin_page_queue($a);
|
$o = admin_page_queue($a);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue