|
Unofficial modifications nieoficjalne modyfikacje for?w phpBB by Przemo |
|
Pomoc dla modyfikacji - BBCM- problem
Fleczer - Pią 05 Paź, 2007 Temat postu: BBCM- problem 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:
Kod | Fatal 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');
?> |
Przemek211 - Sob 06 Paź, 2007
masz wgrany bbcode.tpl ?
Fleczer - Sob 06 Paź, 2007
mam
|
|