smilies werden wieder angezeigt
git-svn-id: svn://svn.cccv.de/engel-system@74 29ba0400-6e00-0410-a75a-ca02368028f8
This commit is contained in:
parent
1820b5c14d
commit
1f312f39c9
|
@ -29,15 +29,9 @@ function TID2Type($TID) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function htmlescape($eckig) {
|
function ReplaceSmilies($eckig) {
|
||||||
|
|
||||||
$neueckig = $eckig;
|
$neueckig = $eckig;
|
||||||
$neueckig = str_replace("&","&",$neueckig);
|
|
||||||
$neueckig = str_replace("<","<",$neueckig);
|
|
||||||
$neueckig = str_replace(">",">",$neueckig);
|
|
||||||
|
|
||||||
// replace smilies
|
|
||||||
|
|
||||||
$neueckig = str_replace(";o))","<img src=\"./inc/smiles/icon_redface.gif\">",$neueckig);
|
$neueckig = str_replace(";o))","<img src=\"./inc/smiles/icon_redface.gif\">",$neueckig);
|
||||||
$neueckig = str_replace(":-))","<img src=\"./inc/smiles/icon_redface.gif\">",$neueckig);
|
$neueckig = str_replace(":-))","<img src=\"./inc/smiles/icon_redface.gif\">",$neueckig);
|
||||||
$neueckig = str_replace(";o)","<img src=\"./inc/smiles/icon_wind.gif\">",$neueckig);
|
$neueckig = str_replace(";o)","<img src=\"./inc/smiles/icon_wind.gif\">",$neueckig);
|
||||||
|
|
|
@ -42,14 +42,12 @@ for ($n = 0 ; $n < $news_rows ; $n++) {
|
||||||
// avatar anzeigen?
|
// avatar anzeigen?
|
||||||
echo DisplayAvatar (mysql_result($Erg, $n, "UID"));
|
echo DisplayAvatar (mysql_result($Erg, $n, "UID"));
|
||||||
echo "</p>\n";
|
echo "</p>\n";
|
||||||
echo "<p class='answer'>". nl2br(mysql_result($Erg, $n, "Text"))."</p>\n";
|
echo "<p class='answer'>". ReplaceSmilies(nl2br(mysql_result($Erg, $n, "Text"))) ."</p>\n";
|
||||||
$RefID=mysql_result($Erg, $n, "ID");
|
$RefID=mysql_result($Erg, $n, "ID");
|
||||||
$countSQL="SELECT COUNT(*) from news_comments where Refid = '$RefID'";
|
$countSQL="SELECT COUNT(*) from news_comments where Refid = '$RefID'";
|
||||||
$countErg = mysql_query($countSQL, $con);
|
$countErg = mysql_query($countSQL, $con);
|
||||||
$countcom = mysql_result($countErg, 0, "COUNT(*)");
|
$countcom = mysql_result($countErg, 0, "COUNT(*)");
|
||||||
echo "<p class='comment' align='right'><a href=\"./news_comments.php?nid=$RefID\">$countcom comments</a></p>\n\n";
|
echo "<p class='comment' align='right'><a href=\"./news_comments.php?nid=$RefID\">$countcom comments</a></p>\n\n";
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "<div align=\"center\">\n\n";
|
echo "<div align=\"center\">\n\n";
|
||||||
|
|
Loading…
Reference in New Issue