Changeset 749

Show
Ignore:
Timestamp:
10/11/2007 05:55:23 AM (21 months ago)
Author:
JavaWoman
Message:

small fix to existsHandler() (paths are different in trunk and 1.1.6.4)

(again - it helps if you actually merge the changes...)

refs #562

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.1.6.4/libs/Wakka.class.php

    r748 r749  
    12801280#echo 'handler: '.$handler.'<br/>'; 
    12811281                // now check if a handler by that name exists 
    1282 #echo 'checking path: '.$this->GetConfigValue('wikka_handler_path').DIRECTORY_SEPARATOR.$handler.DIRECTORY_SEPARATOR.$handler.'.php'.'<br/>'; 
    1283                 $exists = file_exists($this->GetConfigValue('wikka_handler_path').DIRECTORY_SEPARATOR.$handler.DIRECTORY_SEPARATOR.$handler.'.php'); 
     1282#echo 'checking path: '.$this->GetConfigValue('handler_path').DIRECTORY_SEPARATOR.'page'.DIRECTORY_SEPARATOR.$handler.'.php'.'<br/>'; 
     1283                $exists = file_exists($this->GetConfigValue('handler_path').DIRECTORY_SEPARATOR.'page'.DIRECTORY_SEPARATOR.$handler.'.php'); 
    12841284                // return conclusion 
    12851285                return $exists;