OSDN Git Service

Merge branch 'skinnable-master'
[nucleus-jp/nucleus-next.git] / action.php
index 6cf854a..33529ec 100644 (file)
@@ -1,3 +1,4 @@
+<<<<<<< HEAD
 <?php\r
 /*\r
  * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)\r
@@ -32,4 +33,40 @@ if ( $errorInfo )
        doError($errorInfo['message'], $skin);\r
 }\r
 \r
+=======
+<?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 1888 2012-06-17 08:38:54Z sakamocchi $
+ */
+
+$CONF = array();
+require('./config.php');
+include_libs('ACTION.php');
+
+$action = requestVar('action');
+$a = new Action();
+$errorInfo = $a->doAction($action);
+
+if ( $errorInfo )
+{
+       $skin =& $manager->getSkin($errorInfo['skinid']);
+       doError($errorInfo['message'], $skin);
+}
+
+>>>>>>> skinnable-master
 exit;
\ No newline at end of file