OSDN Git Service

FIX: リファレンスにまつわるコードを修正
[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 1888 2012-06-17 08:38:54Z sakamocchi $
19  */
20
21 $CONF = array();
22 require('./config.php');
23 include_libs('ACTION.php');
24
25 $action = requestVar('action');
26 $a = new Action();
27 $errorInfo = $a->doAction($action);
28
29 if ( $errorInfo )
30 {
31         $skin =& $manager->getSkin($errorInfo['skinid']);
32         doError($errorInfo['message'], $skin);
33 }
34
35 exit;