OSDN Git Service

3.65sp1リリースのための修正
[nucleus-jp/nucleus-jp-ancient.git] / nucleus / upgrades / upgrade0.95.php
1 <?php
2 /*
3  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
4  * Copyright (C) 2002-2007 The Nucleus Group
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  * (see nucleus/documentation/index.html#license for more info)
11  */
12
13 function upgrade_do95() {
14
15         if (upgrade_checkinstall(95))
16         return 'インストール済みです';
17
18         if(!upgrade_checkIfColumnExists('blog', 'bconvertbreaks')){
19                 $query =  'ALTER TABLE '.sql_table('blog')
20                            . " ADD bsendping tinyint(2) NOT NULL default '0',"
21                            . " ADD bconvertbreaks tinyint(2) NOT NULL default '1'";
22                 upgrade_query("Adding 'send ping' and convert linebreaks options",$query);
23         }else{
24                 echo "<li>Adding 'send ping' and convert linebreaks options ... <span class=\"warning\">NOT EXECUTED</span>\n<blockquote>Errors occurred during upgrade process.</blockquote>";
25         }
26 }
27
28 ?>