diff --git a/system/admin/views/menu.html.php b/system/admin/views/menu.html.php
index 1a98ae6..211da36 100644
--- a/system/admin/views/menu.html.php
+++ b/system/admin/views/menu.html.php
@@ -19,7 +19,7 @@ function parseMenus($menus) {
}
function parseMenu($menu) {
- $li = '
';
+ $li = '';
$li .= ''.$menu->name.'
';
$li .= 'Delete';
$li .= 'Edit';
diff --git a/system/includes/functions.php b/system/includes/functions.php
index bc9cbeb..5271665 100644
--- a/system/includes/functions.php
+++ b/system/includes/functions.php
@@ -2021,7 +2021,7 @@ function parseNode($node, $child = null) {
}
}
- $li .= ''.$node->name.'';
+ $li .= ''.$node->name.'';
if (isset($node->children)) {
$li .= parseNodes($node->children, true, null);
}
@@ -2047,7 +2047,7 @@ function parseNode($node, $child = null) {
}
}
- $li .= ''.$node->name.'';
+ $li .= ''.$node->name.'';
if (isset($node->children)) {
$li .= parseNodes($node->children, true, null);
}