Problem When Hidding Url's »  Show posts from    to     

Icy Phoenix


Old Bugs - Problem When Hidding Url's



Zuker [ Fri 08 Dec, 2006 14:08 ]
Post subject: Re: Problem When Hidding Url's
Try this and let me know

On my xs worked

in bbcode.php

replace

Code: [Hide]
  1. // generate html  
  2. $html = '<blockquote class="quote"><div class="quote-nouser">' . $lang['xs_bbc_hide_message'] . ':</div><div class="post-text">';  
  3. if(!$show)  
  4. {  
  5. $content = $lang['xs_bbc_hide_message_explain'];  
  6. }  
  7. return array(  
  8. 'valid' => true,  
  9. 'html' => $html . $content . '</div></blockquote>'  
  10. );  


with

Code: [Hide]
  1. // generate html  
  2. $html = '<blockquote class="quote"><div class="quote-nouser">' . $lang['xs_bbc_hide_message'] . ':</div><div class="post-text">';  
  3. if(!$show)  
  4. {  
  5. return array(  
  6. 'valid' => true,  
  7. 'html' => $html . $lang['xs_bbc_hide_message_explain'] . '</div></blockquote>',  
  8. 'allow_nested' => false,  
  9. );  
  10. }  
  11. else  
  12. {  
  13. return array(  
  14. 'valid' => true,  
  15. 'start' => $html,  
  16. 'end' => '</div></blockquote>'  
  17. );  
  18. }  


Mighty Gorgon [ Fri 08 Dec, 2006 18:03 ]
Post subject: Re: Problem When Hidding Url's
Great... you have found my fix!

Good.


Leon [ Fri 08 Dec, 2006 22:52 ]
Post subject: Re: Problem When Hidding Url's
it rocks ...thanks you are my hero zuker

MG ...thanks for the fix


Zuker [ Sat 09 Dec, 2006 00:24 ]
Post subject: Re: Problem When Hidding Url's
yeah! now i've got to look at the rss problem :S

it's a little bit complex


Mighty Gorgon [ Tue 12 Dec, 2006 01:14 ]
Post subject: Re: FIXED -Problem When Hidding Url's
Leon wrote: [View Post]
it rocks ...thanks you are my hero zuker

MG ...thanks for the fix

You're welcome...

Zuker wrote: [View Post]
yeah! now i've got to look at the rss problem :S

it's a little bit complex

It seems like you hanged up on this one...


Zuker [ Tue 12 Dec, 2006 01:20 ]
Post subject: Re: FIXED -Problem When Hidding Url's
Yes Mighty...
I'll take a look with WINMERGE :p




Powered by Icy Phoenix