OSDN Git Service

action.phpのコード整理
authorsakamocchi <o-takashi@sakamocchi.jp>
Fri, 18 May 2012 05:10:17 +0000 (14:10 +0900)
committersakamocchi <o-takashi@sakamocchi.jp>
Fri, 18 May 2012 05:10:17 +0000 (14:10 +0900)
action.php

index 63abbb6..6cf854a 100644 (file)
@@ -1,7 +1,7 @@
 <?php\r
 /*\r
  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)\r
- * Copyright (C) 2002-2012 The Nucleus Group\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
  * 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-2012 The Nucleus Group\r
- * @version $Id: action.php 1508 2011-04-12 17:48:33Z ftruscot $\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',true,false);\r
+include_libs('ACTION.php');\r
 \r
 $action = requestVar('action');\r
 $a = new Action();\r
@@ -28,5 +28,8 @@ $errorInfo = $a->doAction($action);
 \r
 if ( $errorInfo )\r
 {\r
-       doError($errorInfo['message'], new SKIN($errorInfo['skinid']) );\r
+       $skin = new SKIN($errorInfo['skinid']);\r
+       doError($errorInfo['message'], $skin);\r
 }\r
+\r
+exit;
\ No newline at end of file