From 15fdea6925f005d057e748707a07bc571685d6e2 Mon Sep 17 00:00:00 2001 From: rvelices Date: Thu, 18 Mar 2010 14:30:04 +0000 Subject: - removed compatibility with php4 (file_put_contents exists in php5) - when synchronizing local files , sort them alphabetically git-svn-id: http://piwigo.org/svn/trunk@5176 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/common.inc.php | 21 ++++++--------------- include/php_compat/file_put_contents.php | 14 -------------- 2 files changed, 6 insertions(+), 29 deletions(-) delete mode 100644 include/php_compat/file_put_contents.php (limited to 'include') diff --git a/include/common.inc.php b/include/common.inc.php index d4ad9ad5c..ecd6266a1 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -81,7 +81,6 @@ foreach( array( 'array_intersect_key', //PHP 5 >= 5.1.0RC1 'hash_hmac', //(hash) - enabled by default as of PHP 5.1.2 'preg_last_error', // PHP 5 >= 5.2.0 - 'file_put_contents', //PHP5 ) as $func) { if (!function_exists($func)) @@ -105,8 +104,8 @@ include(PHPWG_ROOT_PATH . 'include/functions.inc.php'); include( PHPWG_ROOT_PATH .'include/template.class.php'); // Database connection -$pwg_db_link = pwg_db_connect($conf['db_host'], $conf['db_user'], - $conf['db_password'], $conf['db_base']) +$pwg_db_link = pwg_db_connect($conf['db_host'], $conf['db_user'], + $conf['db_password'], $conf['db_base']) or my_error('pwg_db_connect', true); pwg_db_check_charset(); @@ -116,19 +115,11 @@ load_plugins(); include(PHPWG_ROOT_PATH.'include/user.inc.php'); -if ('fr_FR' == $user['language']) { - define('PHPWG_DOMAIN', 'fr.piwigo.org'); -} -else if ('de_DE' == $user['language']) { - define('PHPWG_DOMAIN', 'de.piwigo.org'); -} -else if ('es_ES' == $user['language']) { - define('PHPWG_DOMAIN', 'es.piwigo.org'); -} -else if ('pl_PL' == $user['language']) { - define('PHPWG_DOMAIN', 'pl.piwigo.org'); +if (in_array( substr($user['language'],0,2), array('fr','de','es','pl') ) ) +{ + define('PHPWG_DOMAIN', substr($user['language'],0,2).'.piwigo.org'); } -else if ('zh_CN' == $user['language']) { +elseif ('zh_CN' == $user['language']) { define('PHPWG_DOMAIN', 'cn.piwigo.org'); } else { diff --git a/include/php_compat/file_put_contents.php b/include/php_compat/file_put_contents.php deleted file mode 100644 index 679d9c984..000000000 --- a/include/php_compat/file_put_contents.php +++ /dev/null @@ -1,14 +0,0 @@ - \ No newline at end of file -- cgit v1.2.3