 |
 |
 |
 |
#283956 - 03/14/05 02:37 PM
Re: Alles Neu, nur es arbeitet nicht zusammen
[Re: landyphil]
|
Member
Registered: 02/11/04
Posts: 183
Loc: Bern, Switzerland
|
[]Zarzal said:<br />Was hat es mit ubbt_photopost.tmpl auf sich ? Was hast du geändert ? [/]<br />Ach da habe ich nur eine Zeile geändert, damit man die Bilder wieder im Forum als Gallery sieht...<br /><br />Suche<br /> [] while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {<br /> $photo = $line["bigimage"];<br /> <br /> if ( is_image($photo) ) {<br /> $photolen = strlen($photo);<br /> $theext = get_ext($photo);<br /> $photo_name = str_replace( $theext, "", $photo );<br /> <br /> print "<td align=\"center\" bgcolor=\"#FFFFFF\" width=\"25%\"><font size=\"1\" face=\"verdana,arial\">";<br /> $temp_user = $line["userid"];<br /><br /> $thumbtag = "{$full_path}{$line['cat']}/{$line['userid']}{$photo}";<br /> $mthumb = "<img border=\"0\" src=\"{$data_dir}{$line['cat']}/{$line['userid']}{$photo_name}-thumb{$theext}\" alt=\"$thumbtag\" />";<br /> <br /> print "<a href=\"{$url_path}/showphoto.php?photo={$line['id']}\">$mthumb</a><br />by ".$line["user"]."</font></td>";<br /> $counted++;<br /> }<br /> <br /> if ( $counted == 4 ) break;<br />}<br />mysql_free_result($result);<br /> [/] <br />Ersetze durch<br /><br /> [] while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {<br /> $photo = $line["bigimage"];<br /> <br /> if ( is_image($photo) ) {<br /> $photolen = strlen($photo);<br /> $theext = get_ext($photo);<br /> $photo_name = str_replace( $theext, "", $photo );<br /> <br /> print "<td align=\"center\" bgcolor=\"#000000\" width=\"25%\"><font size=\"1\" face=\"verdana,arial\">";<br /> $temp_user = $line["userid"];<br /><br /> $thumbtag = "{$full_path}{$line['cat']}/{$line['userid']}{$photo}";<br /> $mthumb = "<img border=\"0\" src=\"{$data_dir}{$line['cat']}/thumbs/{$photo_name}{$theext}\" alt=\"$photo\" />";<br /> <br /> print "<a href=\"{$url_path}showphoto.php?photo={$line['id']}\">$mthumb</a><br />{$ubbt_lang['TEXT_BY']} ".$line["user"]."</font></td>";<br /> $counted++;<br /> }<br /> <br /> if ( $counted == 4 ) break;<br />}<br />mysql_free_result($result);<br /> [/] <br />Und schon sind die Bilder wieder als Vorschau im Forum. <img src="http://www.ubbdev.com/forum/images/graemlins/grin.gif" alt="" />
_________________________
Gruss Micky
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|