08.12.2009, 00:02
magic_quotes sind in PHP 5.3 deprecated und werden in PHP 6 ganz entfernt. Siehe auch: http://www.php.net/manual/de/security.magicquotes.php
// Determine Magic Quotes Status (< PHP 5.3)
if(version_compare(PHP_VERSION, '5.3', '<'))
{
if(get_magic_quotes_gpc())
{
$this->magicquotes = 1;
$this->strip_slashes_array($_POST);
$this->strip_slashes_array($_GET);
$this->strip_slashes_array($_COOKIE);
}
set_magic_quotes_runtime(0);
@ini_set("magic_quotes_gpc", 0);
@ini_set("magic_quotes_runtime", 0);
}
if(@get_magic_quotes_gpc())
{
$this->magicquotes = 1;
$this->strip_slashes_array($_POST);
$this->strip_slashes_array($_GET);
$this->strip_slashes_array($_COOKIE);
}
@set_magic_quotes_runtime(0);
@ini_set("magic_quotes_gpc", 0);
@ini_set("magic_quotes_runtime", 0);
(08.12.2009, 22:44)Michael schrieb: [ -> ]Das ist aber nicht Sinn der Sache, da du so auch die Standardtemplates bearbeiten kannst.
(11.12.2009, 18:35)ehorn schrieb: [ -> ]Verstehe nicht was das problem ist?! soll man die nicht ändern dürfen oder was?!Die Standard-Templates dürfen nicht verändert werden. Diese stammen vom System und werden nur bei Upgrade bearbeitet.