stakemaster Posted June 21, 2009 Share Posted June 21, 2009 Correct me if I'm wrong but the statement: if (isset($cPath) && strpos('_', $cPath)) { in the root index.php should read: if (isset($cPath) && strpos($cPath, '_')) { The parameters in the strpos function are the wrong way round. Link to comment Share on other sites More sharing options...
Jan Zonjee Posted June 21, 2009 Share Posted June 21, 2009 The parameters in the strpos function are the wrong way round. Good catch. Fixing it doesn't seem to change anything but I might not have tested it correctly. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.