Quote:
Originally Posted by Pikok
Why not use this in includes/functions_newpost.php:
PHP Code:
if ($seliconid == $iconid)
{
if ($show['dropdownicons'])
{
$iconselect = " selected";
}
else
{
$iconchecked = HTML_CHECKED;
$selectedicon = array('src' => $iconpath, 'alt' => $alttext);
}
}
else
{
if ($show['dropdownicons'])
{
$iconselect = '';
}
else
{
$iconchecked = '';
}
}
This in the posticons template:
Code:
function changeImage(selVal)
{
if (selVal != 0)
{
document.getElementById('posticonimage').src = selVal;
}
else
{
document.getElementById('posticonimage').src = 'clear.gif';
}
}
This in the posticon_dropdown template:
Code:
<option value="$iconpath"$iconselect>$alttext</option>
That would use the correct SRC path for all icons and would also have the icon pre-selected if the post already had one (i.e. when editing).
|
Okay I integrated your steps now