URL to your eFiction: http://gatchfanfic.com/efiction
Version of eFiction: 3.2.1
Have you bridged eFiction, if so with what?: No.
Any mods installed?: challenges, Beta Reader
Have you modified your eFiction?: No.
Version of PHP: 4.4.4
Version of MySQL: 4.1.21-standard
Have you searched for your problem: Yes.
If so, what terms did you try: apostrophe, title, series title, series, forward slash, slash
I've found this to be a replicable problem in series titles. First create a series with a title that uses an apostrophe in the name (i.e. Nanuk's Adventures). Submit the series, and everything shows up fine. Then, go back into your account and go to "Manage Series". Click to edit that series. When the edit page comes up the apostrophe will be proceeded by a forward slash (). If it is left as-is and you click "submit" at the bottom, the title will show up in the archive with that slash. If you edit the series again, the slash will multiply into 3 slashes. This is happening with admin accounts and normal accounts.
I've tried this in "Manage Stories" and it doesn't do it there. I've changed skins and the behavior is across all of them.
Turning on debug shows nothing, and no warnings are coming up. The slash is just appearing when an author goes to edit the series.
Thanks! π
Julieann
Julieann
Running 3.4.3 bridged with SMF and Coppermine
Mods: Challenges, cpg-art (not working), Limit Summary Length, Bio to Prefs, Top 20 instead of 10
Wants: Move Betareader to Prefs, Twitter
In /series.php, change lines 153 and 154 from this:
$output .= "<label for="title">"._TITLE.":</label> <font color="red">*</font> <input type="text" class="textbox=" name="title" id="title" value="".(isset($series) ? htmlentities($series['title']) : "")."" maxlength="200" size="60"><input type="hidden" value="".(isset($series) ? $series['uid'] : "").""><br />
<label for="summary">"._SUMMARY.":</label><font color="red">*</font> <br /><textarea rows="6" id="summary" name="summary" cols="58">".(isset($series) ? $series['summary'] : "")."</textarea><br />";
to this:
$output .= "<label for="title">"._TITLE.":</label> <font color="red">*</font> <input type="text" class="textbox=" name="title" id="title" value="".(isset($series) ? stripslashes(htmlentities($series['title'])) : "")."" maxlength="200" size="60"> <input type="hidden" value="".(isset($series) ? $series['uid'] : "").""><br />
<label for="summary">"._SUMMARY.":</label><font color="red">*</font><br /><textarea rows="6" id="summary" name="summary" cols="58">".(isset($series) ? stripslashes($series['summary']) : "")."</textarea><br />";
Thanks for the help. It looks like that little change did the trick. Rah! π
Julieann
Julieann
Running 3.4.3 bridged with SMF and Coppermine
Mods: Challenges, cpg-art (not working), Limit Summary Length, Bio to Prefs, Top 20 instead of 10
Wants: Move Betareader to Prefs, Twitter