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/matches/controller/matches.module.php

    r4506 r4599  
    2222    * 
    2323    * @license    GNU/GPL v2 or (at your option) any later version, see "/doc/LICENSE". 
    24     * 
    25     * @author     Jens-André Koch   <vain@clansuite.com> 
    26     * @author     Florian Wolf      <xsign.dll@clansuite.com> 
    27     * @copyright  Jens-André Koch (2005 - onwards), Florian Wolf (2006-2007) 
    28     * 
     24    * @author     Jens-André Koch <vain@clansuite.com> 
     25    * @copyright  Jens-André Koch (2005 - onwards) 
    2926    * @link       http://www.clansuite.com 
    30     * @link       http://gna.org/projects/ 
    3127    * 
    3228    * @version    SVN: $Id$ 
     
    3430 
    3531# Security Handler 
    36 if(defined('IN_CS') == false) 
     32if(defined('IN_CS') === false) 
    3733{ 
    3834    die('Clansuite not loaded. Direct Access forbidden.'); 
     
    4642 * @subpackage  Matches 
    4743 */ 
    48 class Clansuite_Module_Matches extends Clansuite_Module_Controller implements Clansuite_Module_Interface 
     44class Clansuite_Module_Matches extends Clansuite_Module_Controller 
    4945{ 
    50     public function initializeModule(Clansuite_HttpRequest $request, Clansuite_HttpResponse $response) 
     46    public function initializeModule() 
    5147    { 
    5248        parent::initModel('matches'); 
     
    6157        $matches = Doctrine::getTable('CsMatches')->findAll()->toArray(); 
    6258 
    63         #clansuite_xdebug::printr($matches); 
     59        #Clansuite_Debug::printr($matches); 
    6460 
    6561        $view = $this->getView(); 
Note: See TracChangeset for help on using the changeset viewer.