1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Filter menus from page-navigation

This commit is contained in:
Cameron
2013-03-09 15:25:08 -08:00
parent b848be302b
commit 269bdb8ebb
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
$text = "From this screen you can create custom menus or custom pages with your own content in them.<br /><br />"; $text = "From this area you can create custom menus and pages with your own content.<br />Menus and Pages are linked so that you may have a menu easily link back to page if you so wish. ";
// $text .= "Please see <a href='http://docs.e107.org/Using Custom Pages and Custom Menus'>http://docs.e107.org/Using Custom Pages and Custom Menus</a> for an explanation of all the features."; // $text .= "Please see <a href='http://docs.e107.org/Using Custom Pages and Custom Menus'>http://docs.e107.org/Using Custom Pages and Custom Menus</a> for an explanation of all the features.";
$ns -> tablerender('Custom Menus/Pages Help', $text); $ns -> tablerender('Custom Menus/Pages Help', $text);

View File

@@ -81,7 +81,7 @@ class page_sitelink // include plugin-folder in the name.
{ {
$query .= 1; $query .= 1;
} }
$query .= " ORDER BY page_order"; $query .= " AND page_title !='' ORDER BY page_order";
$data = $sql->retrieve($query, true); $data = $sql->retrieve($query, true);
$_pdata = array(); $_pdata = array();