BTW I also played with this:
Code: Select all
if ($user->data['user_id'] == ANONYMOUS || GUEST_HIDE_BBCODE_MOD_BOT && $user->data['is_bot'])
Code: Select all
if ($user->data['user_id'] == ANONYMOUS || GUEST_HIDE_BBCODE_MOD_BOT && $user->data['is_bot'])
Code: Select all
// modified for hide bbcode mod
// only registered users can see what's hidden
// should this include bots? It does below
if (!$user->data['is_registered']) // to disallow bots and guests use instead $user->data['user_type'] == USER_IGNORE
{
// strip flash and hide bbcodes
$bbcode_strip = 'flash|hide';
}
else
{
// just flash then
$bbcode_strip = 'flash';
}
Code: Select all
$bbcode_strip = 'flash';
Code: Select all
$bbcode_strip = 'flash|quote';
Code: Select all
$bbcode_strip = 'flash|img';
Code: Select all
$bbcode_strip = 'flash|img|quote';
Code: Select all
'`[\s]+`'
Code: Select all
// '`[\s]+`' // Multiple spaces...uncomment to have everything on one line
Code: Select all
offsetX : -75,
offsetY : 25,
Thanks for the help but apart from working on the first of the last posts, all other lasts posts moused over immediately revert back to the same off screen fault???RMcGirr83 wrote:That's the first I have seen of it acting that way. You can try and adjust these in the js file
which will move the tooltip more to the left (offsetX).Code: Select all
offsetX : -75, offsetY : 25,
That shouldn't occur...if it is set on one correctly, it should be set to all though I am not familiar with the style that you are using.Lucian_rider wrote:Thanks for the help but apart from working on the first of the last posts, all other lasts posts moused over immediately revert back to the same off screen fault???
So if I close the page and reopen it, the last post tool tip works when first moused over, all other mouse overs are screwed??
What really gets me is that I ran the db installerGeneral Error
SQL ERROR [ mysql4 ]
Table 'northeu5_phpb1.phpbb_3topicst' doesn't exist [1146]
SQL
SELECT t.*, p.post_text AS first_text_hover, pt.post_text AS last_text_hover FROM phpbb_3topicst LEFT JOIN phpbb_3posts p ON (p.post_id = t.topic_first_post_id) LEFT JOIN phpbb_3posts pt ON (pt.post_id = t.topic_last_post_id) WHERE t.topic_id = 12412
Oh and I am also getting this at the top:BACKTRACE[phpBB Debug] PHP Notice: in file /viewforum.php on line 513: Undefined variable: sql_select
[phpBB Debug] PHP Notice: in file /viewforum.php on line 515: Undefined variable: sql_join
FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()
FILE: viewforum.php
LINE: 517
CALL: dbal_mysql->sql_query()