plugins were not sorted, for now sortef by ID (not name)

This commit is contained in:
real_nowhereman 2007-11-09 09:14:49 +00:00
parent 34f5910d79
commit 4fe6a01fe6

View File

@ -41,7 +41,8 @@ SCP;
$this->pluginid = isset($_GET['plugin'])? $_GET['plugin'] : null;
$pi =& new plugin_indexer;
$this->smarty->assign('pluginlist', $pi->getList());
$plist = $pi->getList();
$this->smarty->assign('pluginlist', $plist);
$this->errors = @$pi->getEnableds(true);
$this->fp_plugins = $pi->enabledlist;