OSDN Git Service

8e10f970bfe678dabfaf3495f0f151736649baa6
[nucleus-jp/nucleus-jp-ancient.git] / utf8 / 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  * @license http://nucleuscms.org/license.txt GNU General Public License
14  * @copyright Copyright (C) 2002-2007 The Nucleus Group
15  * $NucleusJP: upgrade0.95.php,v 1.3.2.1 2007/10/24 05:39:15 kimitake Exp $
16  *
17  */
18
19 function upgrade_do95() {
20
21         if (upgrade_checkinstall(95))
22         return 'インストール済みです';
23
24         if(!upgrade_checkIfColumnExists('blog', 'bconvertbreaks')){
25                 $query =  'ALTER TABLE '.sql_table('blog')
26                            . " ADD bsendping tinyint(2) NOT NULL default '0',"
27                            . " ADD bconvertbreaks tinyint(2) NOT NULL default '1'";
28                 upgrade_query("Adding 'send ping' and convert linebreaks options",$query);
29         }else{
30                 echo "<li>Adding 'send ping' and convert linebreaks options ... <span class=\"warning\">NOT EXECUTED</span>\n<blockquote>Errors occurred during upgrade process.</blockquote>";
31         }
32 }
33
34 ?>