OSDN Git Service

FIX: super-admin disallowed from uploading files if not on any teamlists.
[nucleus-jp/nucleus-jp-ancient.git] / utf8 / nucleus / upgrades / upgrade0.95.php
index b854121..2faa9b0 100755 (executable)
@@ -1,14 +1,34 @@
 <?php
-function upgrade_do95() {
+/*
+ * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
+ * Copyright (C) 2002-2007 The Nucleus Group
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ * (see nucleus/documentation/index.html#license for more info)
+ */
+/**
+ * @license http://nucleuscms.org/license.txt GNU General Public License
+ * @copyright Copyright (C) 2002-2007 The Nucleus Group
+ * $NucleusJP: upgrade0.95.php,v 1.3.2.1 2007/10/24 05:39:15 kimitake Exp $
+ *
+ */
 
-$query =  'ALTER TABLE '.sql_table('blog')
-       . " ADD bsendping tinyint(2) NOT NULL default '0'";
-upgrade_query("Adding 'send ping' option",$query);
+function upgrade_do95() {
 
-$query =  'ALTER TABLE '.sql_table('blog')
-       . " ADD bconvertbreaks tinyint(2) NOT NULL default '1'";
-upgrade_query("Adding convert linebreaks option",$query);
+       if (upgrade_checkinstall(95))
+               return "already installed";
 
+       if(!upgrade_checkIfColumnExists('blog', 'bconvertbreaks')){
+               $query =  'ALTER TABLE '.sql_table('blog')
+                          . " ADD bsendping tinyint(2) NOT NULL default '0',"
+                          . " ADD bconvertbreaks tinyint(2) NOT NULL default '1'";
+               upgrade_query("Adding 'send ping' and convert linebreaks options",$query);
+       }else{
+               echo "<li>Adding 'send ping' and convert linebreaks options ... <span class=\"warning\">NOT EXECUTED</span>\n<blockquote>Errors occurred during upgrade process.</blockquote>";
+       }
 }
 
-?>
\ No newline at end of file
+?>