Blog
Documentation
Book a Demo
toggle menu
Categories
Discussions
Activity
Best Of...
Sign In
Sign In
Categories
Discussions
Activity
Best Of...
Sign In
×
Home
›
Vanilla 1.0 Help
Discussion
Quote Depth
Author
Date within
1 day
3 days
1 week
2 weeks
1 month
2 months
6 months
1 year
of
Examples: Monday, today, last week, Mar 26, 3/26/04
Search
Quote Depth
chuyskywalker
December 2006
edited December 2006
in
Vanilla 1.0 Help
Quote Depth
0
Comments
conradslater
September 2007
apparently doesn't work when using quotations extension - bb code only, not html http://youchewpoop.com/forum/comments.php?DiscussionID=2649&page=2#Item_13
0
spode
January 2008
This lops off the first character of the nested quote, the following line needs adjusting:
for( $i = $inout[0]; $i <= $inout[1] ; $i++ )
to:
for( $i = $inout[0]; $i < $inout[1] ; $i++ )
0
This discussion has been closed.
Comments
for( $i = $inout[0]; $i <= $inout[1] ; $i++ )
to:
for( $i = $inout[0]; $i < $inout[1] ; $i++ )