phpBB Type: phpBB / IMPortal
MODs: Yes
Your knowledge: Basic Knowledge
Board URL: http://www.falloutzone.net
PHP Version:
MySQL Version:
What was done before the problem appeared?
Just upgraded to version 141 from 140
What was done to try to solve the problem?
Trying to figure out which file is returning the error
De.scription and Message
Hi,
Just basically trying to tweak out some errors in my site.
When i view a thread, it takes a little bit of time to pull up, it comes up, but IE returns an error:
Line: 732
Char: 42
Error: Expected ';'
Code: 0
URL: http://www.falloutzone.net/foz/viewtopi ... 0528#60528
now, here is a piece of my viewtopic.php file... it can't be line 732, because it's not long enough to have a character 42 and it's the line with only //
- Code: Select all
$select_post_days = '<select>';for($i = 0; $i < count($previous_days); $i++){ $selected = ($post_days == $previous_days[$i]) ? ' selected="selected"' ] . '"' . $selected . '>' . $previous_days_text[$i] . '</option>';}$select_post_days .= '</select>'; //// Decide how to order the post display[color=red]//[/color]if ( !empty($HTTP_POST_VARS['postorder']) || !empty($HTTP_GET_VARS['postorder']) ){ $post_order = (!empty($HTTP_POST_VARS['postorder'])) ? htmlspecialchars($HTTP_POST_VARS['postorder']) ]); $post_time_order = ($post_order == "asc") ? "ASC" : "DESC";}else{ $post_order = 'asc'; $post_time_order = 'ASC';}
Is it possible it's either a different line that's missing the ; or on a different page... when you click on the thread title to view posts, what other files are involved??
I compared my current viewtopic.php with the one from 140, and i don't see any difference in that area, which is why I think it's in another file