|
From: <var...@us...> - 2010-07-15 19:09:06
|
Revision: 7616
http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7616&view=rev
Author: vargenau
Date: 2010-07-15 19:09:00 +0000 (Thu, 15 Jul 2010)
Log Message:
-----------
set_magic_quotes_runtime is deprecated in PHP 5.3
Modified Paths:
--------------
trunk/lib/config.php
Modified: trunk/lib/config.php
===================================================================
--- trunk/lib/config.php 2010-07-15 16:03:57 UTC (rev 7615)
+++ trunk/lib/config.php 2010-07-15 19:09:00 UTC (rev 7616)
@@ -30,8 +30,9 @@
}
// essential internal stuff
-if (!check_php_version(6))
+if (!check_php_version(5,3)) {
set_magic_quotes_runtime(0);
+}
/**
* Browser Detection Functions
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|