![]() |
Newbie - Printable Version +- MyBB Community Forums (https://community.mybb.com) +-- Forum: Extensions (https://community.mybb.com/forum-201.html) +--- Forum: Plugins (https://community.mybb.com/forum-73.html) +---- Forum: Plugin Development (https://community.mybb.com/forum-68.html) +---- Thread: Newbie (/thread-22849.html) |
Newbie - Martin M. - 2005-10-09 Well Okey. My Plugin is giving nasty warnings =P hehe. Okey. Here's the code. PHP Code: <?php Code: Warning: Delimiter must not be alphanumeric or backslash in /home/nordic/domains/nordicfilegalaxee.com/public_html/mcdc/forum/inc/adminfunctions_templates.php on line 25 Well as I said I'm a newbie. Can someone help? RE: Newbie - k776 - 2005-10-09 thats becasue find_replace_templatesets("stats", '\#$footer', "\$server_stats\n\$footer"); should be find_replace_templatesets("stats", '#\$footer', "\$server_stats\n\$footer"); RE: Newbie - Martin M. - 2005-10-09 I'm using this now (Because off another warning) find_replace_templatesets("stats", '#\$footer#', "\$server_stats\n\$footer"); Thanks ![]() ![]() ![]() |