- use htmlarea for editing app description and notes

- special stylesheet for application description and notes
- function to display summary of description with html stripping
This commit is contained in:
Jonathan Ernst
2005-02-02 02:38:20 +00:00
committed by WineHQ
parent 6beff0b816
commit f2258e7ee5
7 changed files with 158 additions and 63 deletions

View File

@@ -114,11 +114,10 @@ while($oRow = mysql_fetch_object($hResult))
$oApp = new Application($oRow->appId);
// image
$img = get_screenshot_img($oRow->appId);
$aDesc = explode("\n",$oApp->data->description,2);
echo '
<tr class="white">
<td><a href="appview.php?appId='.$oRow->appId.'">'.$oApp->data->appName.'</a></td>
<td>'.$aDesc[0].'</td>
<td>'.trim_description($oApp->data->description).'</td>
<td>'.$img.'</td>
</tr>';
}