- Readme First! - Read and follow the rules, otherwise your posts will be closed
There are currently, 63 guest(s) and 0 member(s) that are online. You are Anonymous user. You can register for free by clicking here
Nuke Cops :: View topic - changing function FormatStory [ ]
Author
Message
msimonds
Premium
Joined: Jul 11, 2003
Posts: 240
Location: Dallas, Texas
Posted:
Sat Oct 18, 2003 8:43 pm
My default theme uses just a theme.php. I have this
Code:
function FormatStory($thetext, $notes, $aid, $informant) {
global $anonymous;
if ($notes != "") {
$notes = "<br><br><b>"._NOTE."</b> $notes\n";
} else {
$notes = "";
}
if ("$aid" == "$informant") {
echo "<font class=\"content\">$thetext$notes</font>\n";
} else {
if($informant != "") {
$boxstuff = "<a href=\"userinfo-.html$informant\">$informant</a> ";
} else {
$boxstuff = "$anonymous ";
}
$boxstuff .= ""._WRITES." \"$thetext\"$notes\n";
echo "<font class=\"content\">$boxstuff</font>\n";
}
}
and when a story is submitted by someone it posts:
I want to change so the quotes are removed from the story and at the end it says
mike being the $informant
can someone help me out!!! cannot figure this one out!!
gschoper
Captain
Joined: Sep 16, 2003
Posts: 380
Posted:
Sat Oct 18, 2003 9:28 pm
I didn't test this but it should display about what you are looking for:
Code:
function FormatStory($thetext, $notes, $aid, $informant) {
global $anonymous;
if ($notes != "") {
$notes = "<br><br><b>"._NOTE."</b> $notes\n";
} else {
$notes = "";
}
if ("$aid" == "$informant") {
echo "<font class=\"content\">$thetext$notes</font>\n";
} else {
if($informant != "") {
$boxstuff = "$thetext$notes\n";
$boxstuff .= "<BR> Written by <a href=\"userinfo-.html$informant\">$informant</a>";
} else {
$boxstuff = "$thetext$notes\n";
$boxstuff .= "<BR> Written by $anonymous";
}
echo "<font class=\"content\">$boxstuff</font>\n";
}
}
_________________
http://nuke.schoper.net/
msimonds
Premium
Joined: Jul 11, 2003
Posts: 240
Location: Dallas, Texas
Posted:
Sun Oct 19, 2003 9:33 am
worked perfeclty, thanks so much!!!!
_________________ Founder
SportsRant.com
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum