Shure it is one of the fixes in 1.2, thanks for the report .Brizzle wrote:Ah, that makes sense. That would be great if you could figure out how to fix that.
Thanks!
Code: Select all
Fatal error: Call to a member function bbcode_second_pass_quote() on a non-object in /var/www/vhosts/fatmcgav.me.uk/httpdocs/phpbb3_aq/includes/bbcode.php(117) : regexp code on line 1
Erik Frèrejean wrote:I have updated my svn repsority (first post), this contains phpBB3.0 with advanced quoting 1.1 premodded. If you want to test it just install the checkout and have fun (you need to rename __install to install)
At the moment only the features of 1.0 are implemented yet, but the core is a complete rewrite.
The code in the svn repsority is still alfa quality. It is not recomended (and unsupported) to use this in a live enviroment!
Thats fixed it mate...Erik Frèrejean wrote:Thnx, fixed in svn.
Sorry for the late reply, needed a holyday ,Gorkk wrote:High,
I don't know if it has been suggested already (although I doubt it), but it would be nice to add to this mod the following feature (it could be added in a separate mod, but then it would be better anyway to have it working with this mod as well):
Add "quote this message" checkboxes next to each post in a topic, and then when clicking the answer button, having the post form already filled with the quotes from all the messages selected.
It could be an independent mod, but then would anyway require a specific version to use this mod enhancements (as an independent mod would only use the "classic" quote codes, not your improved quote codes).
Anyway, this mod is still very interesting as is, mainly for the reference to the original post part (although being able to colour the nickname with the forum colour codes is quite interesting as well, as it tells users directly when a quote is from a moderator or an admin )
Fatal error: Call to a member function on a non-object in /home/ceriseis/public_html/volcano/includes/message_parser.php on line 793
There we go, that should be it. Sorry for the trouble, thanks for the help. xp/*
* Select the data of the poster
*/
if (is_numeric ($quote_data_parts[0]))
{
$sql_where = 'user_id = ' . (int) $db->sql_escape ($quote_data_parts[0]);
}
else
{
$sql_where = 'username = \'' . $db->sql_escape ($quote_data_parts[0]) . '\'';
}
$sql = "
SELECT user_id
FROM " . USERS_TABLE . "
WHERE {$sql_where}
";
$result = $db->sql_query ($sql);
$row = $db->sql_fetchrow ($result);
if (!$row)
Code: Select all
global $db