00001 <?php
00002 /*00003 * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/)00004 * Copyright (C) 2002-2007 The Nucleus Group00005 *00006 * This program is free software; you can redistribute it and/or00007 * modify it under the terms of the GNU General Public License00008 * as published by the Free Software Foundation; either version 200009 * of the License, or (at your option) any later version.00010 * (see nucleus/documentation/index.html#license for more info)00011 */00012
00022$CONF = array();
00023 require('./config.php');
00024
00025 // common functions00026 include_once($DIR_LIBS . 'ACTION.php');
00027
00028$action = requestVar('action');
00029$a =& newACTION();
00030$errorInfo = $a->doAction($action);
00031
00032 if ($errorInfo) {
00033 doError($errorInfo['message'], newSKIN($errorInfo['skinid']) );
00034 }
00035
00036 ?>