Quote:
Originally Posted by DJ-Dez
It's a shame. I'm getting adminfunction errors on my other plugin "Yet Another Awards System" on line 1922. It's a shame, I had to uninstall this wondeful plugin.
|
Comment out the function call in awards.php starting on line 97 and it works fine:
PHP Code:
// ###################### Start makedepthmark #######################
// function construct_depth_mark($depth, $depthchar, $depthmark = '')
// {
// repeats the supplied $depthmark for the number of times supplied by $depth
// and appends it onto $depthmark
// for ($i = 0; $i < $depth; $i++)
// {
// $depthmark .= $depthchar;
// }
// return $depthmark;
// }
// end functions