From 8d983f46d8408a46730f6bb5abd0a77613a16054 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Carlos=20Ra=C3=B1a?= Date: Mon, 8 Sep 2008 22:51:43 +0200 Subject: [PATCH] [svn r16268] fix global $page into display_wiki_entry --- main/wiki/index.php | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/main/wiki/index.php b/main/wiki/index.php index db0daa4c64..84a3901594 100644 --- a/main/wiki/index.php +++ b/main/wiki/index.php @@ -116,7 +116,7 @@ api_display_tool_title($tool_name.$add_group_to_title); */ //the page we are dealing with if (!isset($_GET['title'])){ - //$index='index'; // surplus? check to do + $page='index'; } else @@ -1812,7 +1812,7 @@ function display_wiki_entry() { global $tbl_wiki; global $groupfilter; - //global $page; // surplus? check to do + global $page; $_clean['group_id']=(int)$_SESSION['_gid']; if ($_GET['view']) @@ -1820,13 +1820,6 @@ function display_wiki_entry() $_clean['view']=(int)Database::escape_string($_GET['view']); $filter=" AND id='".$_clean['view']."'"; } - - //// surplus? check to do. Say around line 120 - //if (empty($page)) - //{ - // $page='index'; - //} - ///// //first, check page visibility in the first page version $sql='SELECT * FROM '.$tbl_wiki.'WHERE reflink="'.html_entity_decode(Database::escape_string(stripslashes(urldecode($page)))).'" AND '.$groupfilter.' ORDER BY id ASC';