Author |
Message |
mds
Client
![](modules/Forums/images/avatars/blank.gif)
Joined: Dec 24, 2004
Posts: 194
Location: Michigan
|
Posted:
Thu Apr 13, 2006 12:33 am |
|
since ive upgraded to 2.0.20 when quoteing someone it shows the bb code instead of the quote box .....anybody else have this issue ? or know what could possibly be wrong ?
Thank you for moving me ![Embarassed](modules/Forums/images/smiles/icon_redface.gif) |
Last edited by mds on Thu Apr 13, 2006 7:36 pm; edited 1 time in total |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
evaders99
Former Moderator in Good Standing
![](modules/Forums/images/avatars/803d73f6452557b947721.jpg)
Joined: Apr 30, 2004
Posts: 3221
|
Posted:
Thu Apr 13, 2006 1:30 am |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
daemon
Worker
![Worker Worker](modules/Forums/images/ranks/3stars.gif)
![](modules/Forums/images/avatars/45457316443317186036f.png)
Joined: Jan 07, 2005
Posts: 163
|
Posted:
Thu Apr 13, 2006 5:41 am |
|
hmmm..... mine seems to work fine. is that a patch I should apply even if I dont have that issue? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
evaders99
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 13, 2006 1:31 pm |
|
If yours is working fine, then you shouldn't need that change |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
daemon
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 13, 2006 1:33 pm |
|
why something works one place but not another really confuses me at time ![Smile](modules/Forums/images/smiles/icon_smile.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
mds
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 13, 2006 7:37 pm |
|
Server not found
Firefox can't find the server at evaders.swrebellion.com.
same using IE
heres another odd twist to the situation....posts with quotes made prior to update show the quote box ...posts with quotes after update only show the code ............ ![Rolling Eyes](modules/Forums/images/smiles/icon_rolleyes.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
evaders99
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 13, 2006 7:54 pm |
|
Sorry guys, server is having hickups on its DNS
in includes/bbcode.php
Code:
FIND
$text = bbencode_first_pass_pda($text, $uid, '/\[quote=\\\\"(.*?)\\\\"\]/is', '[/quote]', '', false, '', "[quote:$uid=\\\"\\1\\\"]");
REPLACE WITH
$text = bbencode_first_pass_pda($text, $uid, '/\[quote=\\"(.*?)\\"\]/is', '[/quote]', '', false, '', "[quote:$uid=\\\"\\1\\\"]");
|
|
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
mds
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 13, 2006 8:17 pm |
|
would you say this is line number 254 or so ? if so it didnt change anything |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
evaders99
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Apr 14, 2006 7:05 am |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
mds
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Apr 14, 2006 9:30 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
mds
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Apr 14, 2006 10:18 pm |
|
applied the first fix and still no go |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
ruger
New Member
![New Member New Member](modules/Forums/images/ranks/1star.gif)
![](modules/Forums/images/avatars/48b1c508444dcf5ef326c.gif)
Joined: Dec 26, 2005
Posts: 4
|
Posted:
Tue Apr 25, 2006 1:00 am |
|
mds wrote: | http://www.phpbb.com/phpBB/viewtopic.php?t=382680
I'll try this and let ya know |
I have applied #1 from this site on two of my websites that I just upgraded to RavenNukes 2.02.02 w/nukesentinel 2.4.2pl5 and it has fixed that issue!
1. To fix the problem that messes up the use of named quotes bbcode when html is enabled on your board, do this (source: CVS and this post: http://www.phpbb.com/phpBB/viewtopic.php?p=2088170#2088170 ):
Code:
OPEN
includes/functions_post.php
FIND
$message = addslashes($message);
AFTER, ADD
$message = str_replace('"', '\"', $message);
My file looks like this after the fix:
$tag = array(array_shift($matches[0]), array_shift($matches[1]), array_shift($matches[2]));
$message .= htmlspecialchars($part) . clean_html($tag);
}
$message = addslashes($message);
$message = str_replace('"', '\"', $message);
}
BTW..Awesome Job Raven! ![Very Happy](modules/Forums/images/smiles/icon_biggrin.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|