Another issue related to magic quotes gpc: if enabled (usually PHP 5.2.x), backslashes ("\") in a page's title or content disappear when you save the page.
It doesn't happen with magic quotes gpc disabled (default setting for PHP 5.3.x)
To test this, if your server supports it, you can add one of these lines to your root .htaccess file:
or
EDIT: Discarded, I got it wrong because my local server wasnt working as expected. Sorry.
It doesn't happen with magic quotes gpc disabled (default setting for PHP 5.3.x)
To test this, if your server supports it, you can add one of these lines to your root .htaccess file:
Code:
php_flag magic_quotes_gpc on
Code:
php_flag magic_quotes_gpc off
EDIT: Discarded, I got it wrong because my local server wasnt working as expected. Sorry.