OSDN Git Service

CHANGE: フィードとゲストアカウント作成フォームのためのスクリプトを修正
[nucleus-jp/nucleus-next.git] / action.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 /**
14  * File containing actions that can be performed by visitors of the site,
15  * like adding comments, etc...
16  * @license http://nucleuscms.org/license.txt GNU General Public License
17  * @copyright Copyright (C) 2002-2009 The Nucleus Group
18  * @version $Id: action.php 1508 2011-04-12 17:48:33Z ftruscot $
19  */
20
21 $CONF = array();
22 require('./config.php');
23 include_libs('ACTION.php',true,false);
24
25 $action = requestVar('action');
26 $a = new ACTION();
27 $errorInfo = $a->doAction($action);
28
29 if ( $errorInfo )
30 {
31         doError($errorInfo['message'], new SKIN($errorInfo['skinid']) );
32 }