Fleczer Wysłany: Pią 05 Paź, 2007 |
|
|
Cze. mam maly problem
Ot?? po zainstalowaniu bbcode managera i beermoda shoutbox, viewtopic, pw, szukajka, i pewnie kilka innych rzeczy jeszcze, nie dzia?a. Oto co wyskakuje:
KodFatal error: Call to a member function on a non-object in /home/fleczer/domains/fleczer.vdl.pl/public_html/includes/bbcode.php on line 48
A to ca?a funkcja:
PHP Code:<?php
function load_bbcode_template()
{
global $template;
$tpl_filename = $template->make_filename('bbcode.tpl');
$tpl = fread(fopen($tpl_filename, 'r'), filesize($tpl_filename));
// replace \ with \ and then ' with \'.
$tpl = str_replace('\', '\\', $tpl);
$tpl = str_replace('\'', '\\'', $tpl);
// strip newlines.
$tpl = str_replace(array("\n", "\r"), '', $tpl);
// Turn template blocks into PHP assignment statements for the values of $bbcode_tpls..
$tpl = preg_replace('#<!-- BEGIN (.*?) -->(.*?)<!-- END (.*?) -->#', "\n" . '$bbcode_tpls[\'\1\'] = \'\2\';', $tpl);
$bbcode_tpls = array();
eval($tpl);
return $bbcode_tpls;
}
?>
a to linia 48:
PHP Code:<?php
$tpl_filename = $template->make_filename('bbcode.tpl');
?> |
|