OSDN Git Service

FIX: Admin::$ticketless_actionsにbrowseownitemsを追加
[nucleus-jp/nucleus-next.git] / action.php
index 42f6d1c..6cbe25e 100644 (file)
@@ -1,36 +1,35 @@
-<?php
-/*
- * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)
- * Copyright (C) 2002-2009 The Nucleus Group
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- * (see nucleus/documentation/index.html#license for more info)
- */
-
-/**
- * File containing actions that can be performed by visitors of the site,
- * like adding comments, etc...
- * @license http://nucleuscms.org/license.txt GNU General Public License
- * @copyright Copyright (C) 2002-2009 The Nucleus Group
- * @version $Id: action.php 1508 2011-04-12 17:48:33Z ftruscot $
- */
-
-$CONF = array();
-require('./config.php');
-
-// common functions
-//include_once($DIR_LIBS . 'ACTION.php');
-include_libs('ACTION.php',true,false);
-
-$action = requestVar('action');
-$a = new ACTION();
-$errorInfo = $a->doAction($action);
-
-if ($errorInfo) {
-       doError($errorInfo['message'], new SKIN($errorInfo['skinid']) );
-}
-
-?>
\ No newline at end of file
+<?php\r
+/*\r
+ * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)\r
+ * Copyright (C) 2002-2009 The Nucleus Group\r
+ *\r
+ * This program is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU General Public License\r
+ * as published by the Free Software Foundation; either version 2\r
+ * of the License, or (at your option) any later version.\r
+ * (see nucleus/documentation/index.html#license for more info)\r
+ */\r
+\r
+/**\r
+ * File containing actions that can be performed by visitors of the site,\r
+ * like adding comments, etc...\r
+ * @license http://nucleuscms.org/license.txt GNU General Public License\r
+ * @copyright Copyright (C) 2002-2009 The Nucleus Group\r
+ * @version $Id: action.php 1721 2012-03-31 10:18:25Z sakamocchi $\r
+ */\r
+\r
+$CONF = array();\r
+require('./config.php');\r
+include_libs('ACTION.php');\r
+\r
+$action = requestVar('action');\r
+$a = new Action();\r
+$errorInfo = $a->doAction($action);\r
+\r
+if ( $errorInfo )\r
+{\r
+       $skin =& $manager->getSkin($errorInfo['skinid']);\r
+       doError($errorInfo['message'], $skin);\r
+}\r
+\r
+exit;
\ No newline at end of file