Show
Ignore:
Timestamp:
08/28/06 19:03:25 (5 years ago)
Author:
max-horvath
Message:

"2006-08-28 Max Horvath <max.horvath@…>

  • Integrated KML node list export
  • Integrated PDF node list export
  • Updated Sprintf formatted strings in some Smarty templates"
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog-auth/wifidog/classes/Dependencies.php

    r1023 r1082  
    4343 * @link       http://www.wifidog.org/ 
    4444 */ 
    45 require_once ('classes/Locale.php');//Necessary in case gettext isn't defined 
     45 
     46// Detect Gettext support 
     47if (!function_exists('gettext')) { 
     48    require_once ('classes/Locale.php'); 
     49} 
     50 
    4651/** 
    4752 * This class checks the existence of components required by WiFiDog. 
     
    7075           "Radius" => array ("name" => "PEAR::RADIUS", "files" => array("Auth/RADIUS.php", "Crypt/CHAP.php"), "PhpExtension" => false, "localLib" => false), 
    7176           "FCKeditor" => array ("name" => "FCKeditor", "files" => "lib/FCKeditor/fckeditor.php", "PhpExtension" => false, "localLib" => true), 
     77           "FPDF" => array ("name" => "FPDF", "files" => "lib/fpdf/fpdf.php", "PhpExtension" => false, "localLib" => true), 
    7278           "Smarty" => array ("name" => "Smarty", "files" => "lib/smarty/Smarty.class.php", "PhpExtension" => false, "localLib" => true) 
    7379           );