OSDN Git Service

c387ed26916439fbb4625d72c787234a49d22724
[nucleus-jp/nucleus-next.git] / nucleus / upgrades / upgrade3.1.php
1 <?php
2 /*
3  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
4  * Copyright (C) 2002-2009 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-2009 The Nucleus Group
15  * @version $Id: upgrade3.1.php 1388 2009-07-18 06:31:28Z shizuki $
16  */
17
18 function upgrade_do310() {
19
20         if (upgrade_checkinstall(310))
21                 return 'already installed';
22
23         // 3.0 -> 3.1
24         // update database version  
25         update_version('310');
26         // nothing!
27 }
28
29 ?>