1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +02:00

small bug fixes

This commit is contained in:
CaMer0n
2009-10-26 09:50:00 +00:00
parent 679348d31c
commit 1a93629a16

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_admin/includes/infopanel.php,v $
| $Revision: 1.13 $
| $Date: 2009-10-22 23:43:15 $
| $Revision: 1.14 $
| $Date: 2009-10-26 09:50:00 $
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/
@@ -272,6 +272,8 @@ function render_infopanel_menu_options()
if (e107::getDb()->db_Select_gen($menu_qry))
{
while ($row = e107::getDb()->db_Fetch())
{
if(!is_numeric($row['menu_path']))
{
$label = str_replace("_menu","",$row['menu_name']);
$path_to_menu = $row['menu_path'].$row['menu_name'];
@@ -281,6 +283,7 @@ function render_infopanel_menu_options()
$text .= "</div>";
}
}
}
return $text;
}
?>