Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
<a href="">text</a>
I don't know how to describe the problem, you can see it here in my testing collection (the first album named "pokus"). A whole html code inserted into the album description is <b>111</b><br><i>222</i><br><a href="">link</a>
One thing is strange. In administration mode the description of the album is correct (this picture), but in the album options there is some another error (this picture). It seems like the link tag splits and some part is written over the row.print '<img class="photos" src="'.plogger_get_album_thumb().'" title="'.$desc.'" alt="'.$desc.'" /></a>';
print '<img class="photos" src="'.plogger_get_album_thumb().'" title="'.htmlentities($desc).'" alt="'.htmlentities($desc)c.'" /></a>';
title="'.$capt.'" alt="'.$capt.'" />';
title="'.htmlentities($capt).'" alt="'.htmlentities($capt).'" />';
print '<img class="photos" src="'.plogger_get_collection_thumb().'" title="'.$desc.'" alt="'.$desc.'" /></a>';
print '<img class="photos" src="'.plogger_get_collection_thumb().'" title="'.htmlentities($desc).'" alt="'.htmlentities($desc).'" /></a>';
$imgtag = '<img class="photos-large" src="'.plogger_get_picture_thumb(THUMB_LARGE).'" title="'.$capt.'" alt="'.$capt.'" />';
$imgtag = '<img class="photos-large" src="'.plogger_get_picture_thumb(THUMB_LARGE).'" title="'.htmlentities($capt).'" alt="'.htmlentities($capt).'" />';
htmlspecialchars($desc, ENT_QUOTES)
$output .= '<label accesskey="c" for="caption"><em>C</em>aption:</label><input size="80" name="caption" id="caption" value="'.SmartStripSlashes($photo['caption']).'"><br />
<label>Description:</label><br />
<textarea name="description" id="description" cols="60" rows="5">'.SmartStripSlashes($photo['description']).'</textarea><br />
<label for="allow_comments" accesskey="w">Allo<em>w</em> Comments?<label><br /><input type="checkbox" id="allow_comments" name="allow_comments" value="1"'." $state>";
$output .= '<label accesskey="c" for="caption"><em>C</em>aption:</label><input size="80" name="caption" id="caption" value="'.htmlspecialchars(SmartStripSlashes($photo['caption']), ENT_QUOTES).'"><br />
<label>Description:</label><br />
<textarea name="description" id="description" cols="60" rows="5">'.htmlspecialchars(SmartStripSlashes($photo['description']), ENT_QUOTES).'</textarea><br />
<label for="allow_comments" accesskey="w">Allo<em>w</em> Comments?<label><br /><input type="checkbox" id="allow_comments" name="allow_comments" value="1"'." $state>";
$output .= '<label for="name" accesskey="n"><em>N</em>ame:</label><br/><input size="30" name="name" id="name" value="'.SmartStripSlashes($album['name']).'"><br/>
<label for="description" accesskey="d"><em>D</em>escription:</label><br/><input size="80" name="description" id="description" value="'.SmartStripSlashes($album['description']).'"><br/>
Thumbnail:<br/><select name="thumbnail_id" class="thumbselect" id="thumbselect"
onchange="updateThumbPreview(this)">' . $images . '</select>
<script type="text/javascript">updateThumbPreview(document.getElementById(\'thumbselect\'));</script>';
$output .= '<label for="name" accesskey="n"><em>N</em>ame:</label><br/><input size="30" name="name" id="name" value="'.htmlspecialchars(SmartStripSlashes($album['name']), ENT_QUOTES).'"><br/>
<label for="description" accesskey="d"><em>D</em>escription:</label><br/><input size="80" name="description" id="description" value="'.htmlspecialchars(SmartStripSlashes($album['description']), ENT_QUOTES).'"><br/>
Thumbnail:<br/><select name="thumbnail_id" class="thumbselect" id="thumbselect"
onchange="updateThumbPreview(this)">' . $images . '</select>
<script type="text/javascript">updateThumbPreview(document.getElementById(\'thumbselect\'));</script>';
$output .= '<label accesskey="n" for="name"><em>N</em>ame:</label><br/><input size="30" name="name" id="name" value="'.SmartStripSlashes($collection['name']).'"><br/>
<label accesskey="d" for="description"><em>D</em>escription:</label><br/><input size="80" name="description" id="description" value="'.SmartStripSlashes($collection['description']).'"><br/>
Thumbnail:<br/><select name="thumbnail_id" onchange="updateThumbPreview(this)"
class="thumbselect" id="thumbselect">' . $images . '</select>
<script type="text/javascript">updateThumbPreview(document.getElementById(\'thumbselect\'));</script>';
$output .= '<label accesskey="n" for="name"><em>N</em>ame:</label><br/><input size="30" name="name" id="name" value="'.htmlspecialchars(SmartStripSlashes($collection['name']), ENT_QUOTES).'"><br/>
<label accesskey="d" for="description"><em>D</em>escription:</label><br/><input size="80" name="description" id="description" value="'.htmlspecialchars(SmartStripSlashes($collection['description']), ENT_QUOTES).'"><br/>
Thumbnail:<br/><select name="thumbnail_id" onchange="updateThumbPreview(this)"
class="thumbselect" id="thumbselect">' . $images . '</select>
<script type="text/javascript">updateThumbPreview(document.getElementById(\'thumbselect\'));</script>';
1 to 12 of 12