home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 April
/
PCWorld_2005-04_cd.bin
/
akce
/
web
/
phpnuke
/
PHP-Nuke-7.5.exe
/
upgrades
/
7.x
/
upgrade72-73.php
< prev
next >
Wrap
PHP Script
|
2004-11-01
|
1KB
|
28 lines
<?php
######################################################
# File to upgrade from PHP-Nuke 7.2 to PHP-Nuke 7.3
# After you used this file, you can safely delete it.
######################################################
# -= WARNING: PLEASE READ =-
#
# NOTE: This file uses config.php to retrieve needed
# variables values. So, to do the upgrade PLEASE copy
# this file in your server root directory and execute
# it from your browser.
######################################################
include("mainfile.php");
// Forums Table Modification
$db->sql_query("UPDATE ".$prefix."_bbconfig SET config_value='.0.8' WHERE config_name='version'");
// PHP-Nuke copyright notice modification to be GPL 2(c) section compliant.
$db->sql_query("UPDATE ".$prefix."_config SET copyright='PHP-Nuke Copyright © 2004 by Francisco Burzi. This is free software, and you may redistribute it under the <a href=\"http://phpnuke.org/files/gpl.txt\">GPL</a>. PHP-Nuke comes with absolutely no warranty, for details, see the <a href=\"http://phpnuke.org/files/gpl.txt\">license</a>.'");
// PHP-Nuke Version Number Update
$db->sql_query("UPDATE ".$prefix."_config SET Version_Num='7.3'");
echo "PHP-Nuke Update finished!<br><br>"
."You should now delete this upgrade file from your server.<br><br>";
?>