Vergleich admin/index.php - 1.6.4 - 1.6.5

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 6Zeile 6
 * Website: http://mybb.com
* License: http://mybb.com/about/license
*

 * Website: http://mybb.com
* License: http://mybb.com/about/license
*

 * $Id: index.php 5441 2011-04-16 09:07:17Z jammerx2 $

 * $Id: index.php 5621 2011-09-26 18:35:54Z ralgith $

 */

define("IN_MYBB", 1);

 */

define("IN_MYBB", 1);

Zeile 168Zeile 168
	
$mybb->request_method = "get";


	
$mybb->request_method = "get";


		if($mybb->input['module'])

		if(!empty($mybb->input['module']))

		{

		{

			admin_redirect("index.php?module=".$mybb->input['module']);






























			// $query_string should contain the module
$query_string = '?module='.htmlspecialchars($mybb->input['module']);

// Now we look for any paramters passed in $_SERVER['QUERY_STRING']
if($_SERVER['QUERY_STRING'])
{
$qstring = '?'.preg_replace('#adminsid=(.{32})#i', '', $_SERVER['QUERY_STRING']);
$qstring = str_replace('action=logout', '', $qstring);
$qstring = preg_replace('#&+#', '&', $qstring);
$qstring = str_replace('?&', '?', $qstring);

// So what do we do? We know that parameters are devided by ampersands
// That means we must get to work!
$parameters = explode('&', $qstring);

// Remove our first member if it's for the module
if(substr($parameters[0], 0, 8) == '?module=')
{
unset($parameters[0]);
}

foreach($parameters as $key => $param)
{
$params = explode("=", $param);

$query_string .= '&'.htmlspecialchars($params[0])."=".htmlspecialchars($params[1]);
}
}

admin_redirect("index.php".$query_string);

		}
}
else

		}
}
else

Zeile 421Zeile 450
	}
}


	}
}


$plugins->run_hooks_by_ref("admin_tabs", $modules);

$modules = $plugins->run_hooks("admin_tabs", $modules);


closedir($dir);



closedir($dir);