diff --git a/docs/CHANGELOG b/docs/CHANGELOG index ce7e772e..3385228c 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,7 @@ -------------------------------------------------------------------------- v.3.5-Alpha1 + - Removed redundent UPDATE on session table due to /util.php - Added Batch Download to single Artist view - Added back in the direct links on songs, requires download set to enabled as it's essentially the same thing except with diff --git a/lib/init.php b/lib/init.php index 7c6e3896..6a2e1a15 100644 --- a/lib/init.php +++ b/lib/init.php @@ -251,13 +251,12 @@ unset($results); flip_class(array('odd','even')); /* Check to see if we need to perform an update */ -if (! preg_match('/update\.php/', $_SERVER['PHP_SELF'])) { +if (!preg_match('/update\.php/', $_SERVER['PHP_SELF'])) { if (Update::need_update()) { header("Location: " . Config::get('web_path') . "/update.php"); exit(); } } - // For the XMLRPC stuff $GLOBALS['xmlrpc_internalencoding'] = Config::get('site_charset'); ?> diff --git a/util.php b/util.php index 28bbabaf..99f8d149 100644 --- a/util.php +++ b/util.php @@ -1,7 +1,7 @@