- Timestamp:
- 08/28/06 19:03:25 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/classes/NodeLists/NodeListHTML.php
r1031 r1082 46 46 * Load required classes 47 47 */ 48 require_once('classes/Dependencies.php'); 48 49 require_once('classes/Network.php'); 49 50 require_once('classes/Node.php'); … … 178 179 $this->_smarty->assign('nodes', array()); 179 180 $this->_smarty->assign('num_deployed_nodes', 0); 181 $this->_smarty->assign('PdfSupported', false); 180 182 181 183 /* … … 196 198 $this->_smarty->assign('GMapsEnabled', true); 197 199 } 200 201 if (Dependencies::check("FPDF")) { 202 $this->_smarty->assign('PdfSupported', true); 203 } 204 198 205 // Set section of Smarty template 199 206 $this->_smarty->assign('sectionTOOLCONTENT', true);
