Feature Requests item #752902, was opened at 2003-06-11 15:56
Message generated for change (Settings changed) made by greggmc
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=358956&aid=752902&group_id=8956
Category: None
Group: None
>Status: Closed
Priority: 5
Submitted By: flobee (flobee)
Assigned to: Nobody/Anonymous (nobody)
Summary: pictures/covers to survey by using the "sid"
Initial Comment:
survey_render.inc line ~51 - 58
<table class="headerGraphic">
<tr>
<td class="image"></td>
</tr>
</table>
***
// NEW SUGGESTION
***
<table border="0" WIDTH="100%">
<tr valign="TOP">
<td WIDTH="95%"><h2 class="surveyTitle"><?php
echo($survey["title"]); ?></h2></td>
<TD WIDTH="*" nowrap="nowrap">
<?php
if(file_exists("covers/" . $survey["id"] . ".jpg") ) {
echo ("<IMG SRC=\"covers/".$survey["id"].".jpg\"
ALT=\"".$survey["title"]."\" hspace=\"2\" vspace=\"2\"
BORDER=\"0\">");
}else{
echo ("<IMG SRC=\"covers/blank.gif\" ALT=\"\"
height=\"4\" WIDTH=\"4\" BORDER=\"0\">");
}
?>
</TD>
</tr>
</table>
----------------------------------------------------------------------
>Comment By: Matthew Gregg (greggmc)
Date: 2005-03-08 16:05
Message:
Logged In: YES
user_id=14116
won't fix. this will change with new suvey rendering
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=358956&aid=752902&group_id=8956
|