Viewstory.php lines 30 and 31. I commented out those two lines and my live site is working again for me. I'm pretty sure that this is the same problem even if the results are slightly different, so if couldn't hurt to try it.
if(isset($_GET['textsize']) && isNumber($_GET['textsize'])) $textsize = $_GET['textsize'];
and
else $textsize = 0;
This is a bug in version 3.2. To fix it, in viewstory.php, move the line that reads include("header.php"); up two lines so the top of that file reads:
$current = "viewstory";
if(isset($_GET['action'])) $action = $_GET['action'];
else $action = false;
include ("header.php");
if(isset($_GET['textsize']) && isNumber($_GET['textsize'])) $textsize = $_GET['textsize'];
else $textsize = 0;
Yay! It worked! Thanks you!
Nice! Thanks again.
It is the same problem as the other thread darklight mentioned. See that thread for a fix.
The .zip has been updated to fix this error. There is also a link in the news forum to a .zip with the specific files to replace.
Thanks for the fix. I had to use it too. I thought my urls had changed and altered them in my blog that links to my fiction to leave out the text sizing bit. Luckily either way for the url works so using the fix hasnt' meant I've had to change them all back. Yay. And my visitors can now browse my site properly again.