function start_update() { // The updater html_header("Coppermine - Upgrade"); html_logo(); test_fs(); if ($errors != '') { html_prereq_errors($errors); } else { test_sql_connection(); if ($errors == '') { update_tables(); update_system_thumbs(); } else { html_error($errors); } if ($errors == '') { html_install_success($notes); session_destroy(); } else { html_error($errors); } } html_footer(); }
phpinfo(); } else { // The installer html_header(); html_logo(); if (file_exists($DFLT['cfg_f'])) { html_installer_locked(); } elseif (count($_POST)) { test_fs(); test_sql_connection(); test_admin_login(); write_config_file(); if ($errors == '') { create_tables(); } if ($errors != '') { html_input_config($errors); } else { //lock_install(); html_install_success($notes); } } else { test_fs(); if ($errors != '') { html_prereq_errors($errors); } else { html_input_config(); } } html_footer(); }