"; } else { // we have to update the local conf $config_file_contents = @file_get_contents($local_conf); if ($config_file_contents === false) { $error = 'Cannot load '.$local_conf.', add by hand: '.$conf_line; array_push($page['errors'], $error); echo $error; } else { $php_end_tag = strrpos($config_file_contents, '?'.'>'); if ($php_end_tag === false) { // the file is empty $config_file_contents_new = ""; } else { $config_file_contents_new = substr($config_file_contents, 0, $php_end_tag) . "\n" .$conf_line."\n" .substr($config_file_contents, $php_end_tag) ; } } } if (isset($config_file_contents_new)) { if (!@file_put_contents($local_conf, $config_file_contents_new)) { $error = 'Cannot write into local configuration file '.$local_conf.', add by hand: '.$conf_line; array_push($page['errors'], $error); echo $error; } } } $query = ' DELETE FROM '.CONFIG_TABLE.' WHERE param =\'gallery_url\' ;'; pwg_query($query); echo "\n" . $upgrade_description ."\n" ; ?>