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 >
PHP Script  |  2004-11-01  |  1KB  |  28 lines

  1. <?php
  2.  
  3. ######################################################
  4. # File to upgrade from PHP-Nuke 7.2 to PHP-Nuke 7.3
  5. # After you used this file, you can safely delete it.
  6. ######################################################
  7. #            -= WARNING: PLEASE READ =-
  8. #
  9. # NOTE: This file uses config.php to retrieve needed
  10. # variables values. So, to do the upgrade PLEASE copy
  11. # this file in your server root directory and execute
  12. # it from your browser.
  13. ######################################################
  14.  
  15. include("mainfile.php");
  16.  
  17. // Forums Table Modification
  18. $db->sql_query("UPDATE ".$prefix."_bbconfig SET config_value='.0.8' WHERE config_name='version'");
  19.  
  20. // PHP-Nuke copyright notice modification to be GPL 2(c) section compliant.
  21. $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>.'");
  22.  
  23. // PHP-Nuke Version Number Update
  24. $db->sql_query("UPDATE ".$prefix."_config SET Version_Num='7.3'");
  25.  
  26. echo "PHP-Nuke Update finished!<br><br>"
  27.     ."You should now delete this upgrade file from your server.<br><br>";
  28. ?>