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

More code cleanup

This commit is contained in:
Cameron
2016-12-02 13:51:32 -08:00
parent 4f4021a517
commit 0b78d551ee
2 changed files with 7 additions and 6 deletions

View File

@@ -216,7 +216,8 @@ class e_menuManager {
} }
$file = urldecode($_GET['path']).".php"; $file = urldecode($_GET['path']).".php";
$newurl = e_PLUGIN_ABS.$file."?id=".$_GET['id'].'&iframe=1'; $file = e107::getParser()->filter($file);
$newurl = e_PLUGIN_ABS.$file."?id=".intval($_GET['id']).'&iframe=1';
/* /*

View File

@@ -892,14 +892,14 @@ class search extends e_shortcode
$_GET = $this->magic_search($_GET); $_GET = $this->magic_search($_GET);
} }
$full_query = $_GET['q']; $full_query = $tp->filter($_GET['q'],'w');
if ($_GET['in']) if ($_GET['in'])
{ {
$en_in = explode(' ', $_GET['in']); $en_in = explode(' ', $_GET['in']);
foreach ($en_in as $en_in_key) foreach ($en_in as $en_in_key)
{ {
$full_query .= " +".$en_in_key; $full_query .= " +".$tp->filter($en_in_key);
} }
$this->enhanced = true; $this->enhanced = true;
} }
@@ -908,13 +908,13 @@ class search extends e_shortcode
$en_ex = explode(' ', $_GET['ex']); $en_ex = explode(' ', $_GET['ex']);
foreach ($en_ex as $en_ex_key) foreach ($en_ex as $en_ex_key)
{ {
$full_query .= " -".$en_ex_key; $full_query .= " -".$tp->filter($en_ex_key);
} }
$this->enhanced = true; $this->enhanced = true;
} }
if ($_GET['ep']) if ($_GET['ep'])
{ {
$full_query .= " \"".$_GET['ep']."\""; $full_query .= " \"".$tp->filter($_GET['ep'])."\"";
$this->enhanced = true; $this->enhanced = true;
} }
if ($_GET['be']) if ($_GET['be'])
@@ -922,7 +922,7 @@ class search extends e_shortcode
$en_be = explode(' ', $_GET['be']); $en_be = explode(' ', $_GET['be']);
foreach ($en_be as $en_be_key) foreach ($en_be as $en_be_key)
{ {
$full_query .= " ".$en_be_key."*"; $full_query .= " ".$tp->filter($en_be_key)."*";
} }
$this->enhanced = true; $this->enhanced = true;
} }