Ignore:
Timestamp:
08/27/10 23:01:58 (21 months ago)
Author:
vain
Message:
  • minor change to all security constant checks
  • fixed the non rewrite routing
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/modules/statistics/controller/statistics.module.php

    r4361 r4599  
    11<?php 
    2 /** 
    3  * Clansuite - just an eSports CMS 
    4  * Jens-André Koch © 2005 - onwards 
    5  * http://www.clansuite.com/ 
    6  * 
    7  * This file is part of "Clansuite - just an eSports CMS". 
    8  * 
    9  * LICENSE: 
    10  * 
    11  *    This program is free software; you can redistribute it and/or modify 
    12  *    it under the terms of the GNU General Public License as published by 
    13  *    the Free Software Foundation; either version 2 of the License, or 
    14  *    (at your option) any later version. 
    15  * 
    16  *    This program is distributed in the hope that it will be useful, 
    17  *    but WITHOUT ANY WARRANTY; without even the implied warranty of 
    18  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    19  *    GNU General Public License for more details. 
    20  * 
    21  *    You should have received a copy of the GNU General Public License 
    22  *    along with this program; if not, write to the Free Software 
    23  *    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA 
    24  * 
    25  * @license    GNU/GPL v2 or (at your option) any later version, see "/doc/LICENSE". 
    26  * 
    27  * @author     Jens-André Koch <vain@clansuite.com> 
    28  * @copyright  Jens-André Koch (2005 - onwards) 
    29  * 
    30  * @link       http://www.clansuite.com 
    31  * @link       http://gna.org/projects/clansuite 
    32  * 
    33  * @version    SVN: $Id: index.module.php 2625 2008-12-09 00:04:43Z vain $ 
    34  */ 
     2   /** 
     3    * Clansuite - just an eSports CMS 
     4    * Jens-André Koch © 2005 - onwards 
     5    * http://www.clansuite.com/ 
     6    * 
     7    * LICENSE: 
     8    * 
     9    *    This program is free software; you can redistribute it and/or modify 
     10    *    it under the terms of the GNU General Public License as published by 
     11    *    the Free Software Foundation; either version 2 of the License, or 
     12    *    (at your option) any later version. 
     13    * 
     14    *    This program is distributed in the hope that it will be useful, 
     15    *    but WITHOUT ANY WARRANTY; without even the implied warranty of 
     16    *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     17    *    GNU General Public License for more details. 
     18    * 
     19    *    You should have received a copy of the GNU General Public License 
     20    *    along with this program; if not, write to the Free Software 
     21    *    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA 
     22    * 
     23    * @license    GNU/GPL v2 or (at your option) any later version, see "/doc/LICENSE". 
     24    * @author     Jens-André Koch <vain@clansuite.com> 
     25    * @copyright  Jens-André Koch (2005 - onwards) 
     26    * @link       http://www.clansuite.com 
     27    * 
     28    * @version    SVN: $Id: index.module.php 2625 2008-12-09 00:04:43Z vain $ 
     29    */ 
    3530 
    3631# Security Handler 
    37 if (defined('IN_CS') == false) { die('Clansuite not loaded. Direct Access forbidden.');} 
     32if(defined('IN_CS') === false) 
     33{ 
     34    die('Clansuite not loaded. Direct Access forbidden.'); 
     35} 
    3836 
    3937/** 
     
    4442 * @subpackage  Clansuite_Module_Statistics 
    4543 */ 
    46 class Clansuite_Module_Statistics extends Clansuite_Module_Controller implements Clansuite_Module_Interface 
     44class Clansuite_Module_Statistics extends Clansuite_Module_Controller 
    4745{ 
    4846    /** 
    4947     * Clansuite_Module_Statistics 
    5048     */ 
    51     public function initializeModule(Clansuite_HttpRequest $request, Clansuite_HttpResponse $response) 
     49    public function initializeModule() 
    5250    { 
    5351    } 
Note: See TracChangeset for help on using the changeset viewer.