
09-29-2006, 03:28 AM
|
 |
|
|
Join Date: Jul 2004
Posts: 813
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Xplorer4x4
Well I finally have found the fix. This is tested and working in firefox, and does not create any more of those anoying empty tables when you edit.
REPLACE
PHP Code:
<if condition="!$GLOBALS['FIRSTPOSTID']">
WITH
PHP Code:
<if condition="$post[postcount] % $vboptions[maxposts] == 1">
If you need to exclude a user group form seeing them,
PHP Code:
<if condition="$post[postcount] % $vboptions[maxposts] == 1 AND $vbulletin->userinfo[usergroupid] != 'x' ">
|
thank you
|