View Single Post
Old
  (#24 (permalink))
mikem
Senior Member
 
Status: Offline
Posts: 2,905
Join Date: Sep 2002
03-05-2003, 08:00 AM

Quote:
I pasted this just above this in theme.php
just above this line
Quote:
function themesidebox($title, $content) {
uh not ABOVE that line, below it.

like this I posted before
Code:
/************************************************************/ 
/* Function themesidebox()                                  */ 
/*                                                          */ 
/* Control look of your blocks. Just simple.                */ 
/************************************************************/ 

function themesidebox($title, $content) { 
                 if (@file_exists($content)) { 
                $fp = fopen ($content, "r"); 
                $content = fread($fp, filesize($content)); 
                fclose ($fp); 
                $content = "?>$content<?"; 
                $content = eval($content); 
        } else if (eregi("^http", $content)) { 
                $fp = fopen ($content, "r"); 
                $content = fread($fp, 65535); 
                fclose ($fp); 
        } 
    $tmpl_file = "themes/Chronicles/blocks.html"; 
    $thefile = implode("", file($tmpl_file)); 
    $thefile = addslashes($thefile); 
    $thefile = "\$r_file=\"".$thefile."\";"; 
    eval($thefile); 
    print $r_file; 
}
mikem
   
Reply With Quote