Show
Ignore:
Timestamp:
02/10/2008 12:11:00 PM (11 months ago)
Author:
Shadowhand
Message:

Fixes to Forge:

  • Replaced html() with render() on all Forge classes
  • Minor cleanups in various classes
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/modules/forge/libraries/Forge.php

    r1923 r2022  
    208208         * @return  string 
    209209         */ 
    210         public function html($template = 'forge_template', $custom = FALSE) 
     210        public function render($template = 'forge_template', $custom = FALSE) 
    211211        { 
    212212                // Load template 
     
    279279        public function __toString() 
    280280        { 
    281                 return $this->html(); 
     281                return $this->render(); 
    282282        } 
    283283