Ticket #1485244: installer-magic_quotes_gpc.diff
| File installer-magic_quotes_gpc.diff, 1.0 kB (added by flurischt, 5 months ago) |
|---|
-
roundcubemail/installer/check.php
15 15 'PostgreSQL' => 'pgsql', 'SQLite (v2)' => 'sqlite'); 16 16 17 17 $ini_checks = array('file_uploads' => 1, 'session.auto_start' => 0, 18 'magic_quotes_ gpc' => 0, 'magic_quotes_sybase' => 0);18 'magic_quotes_sybase' => 0); 19 19 20 20 $source_urls = array( 21 21 'Sockets' => 'http://www.php.net/manual/en/ref.sockets.php', -
roundcubemail/installer/index.php
1 1 <?php 2 2 ini_set('error_reporting', E_ALL&~E_NOTICE); 3 3 ini_set('display_errors', 1); 4 set_magic_quotes_runtime(0); 4 5 5 6 define('INSTALL_PATH', realpath(dirname(__FILE__) . '/../').'/'); 6 7 $include_path = INSTALL_PATH . 'program/lib' . PATH_SEPARATOR;
