MyBB Community Forums

Full Version: {$errorlist}
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi can anyone please tell me where theĀ {$errorlist} variable is stored in the php files?

i want to remove the list so it fetches the raw error message so i can apply different styling

thanks..

p.s: im refering to the variable inside error_inline
The styling is done by class="error" not the variable itself.
No. I've already styled the error class.
But the variable that loads the message assigns a <li> itself.
I need to edit the php file to stop it creating a list containing the contents of the inline message.
You can use this script to search your server files for a string. It will return the files containing the string:

<?php
$command = "grep -ri 'listing forumlist' ./*";
$output = shell_exec($command);
echo "$output";
echo "Grep job over.";
?>
Thanks it was in inc/functions.php on line 832