Quote:
Originally Posted by Akex
I don't know if it was mentionned but there is a mistake in vb options for this product :
When you decide to choose if you use Text or button link, the value stored in database is not "Text" or "Buttons" but "All" or "own" ... So you can't see the link in postbit ... Quite confusing ...
|
agreed that is quite annoying and confusing i will check that
edit
just checked and you're right
[SQL]
SELECT * FROM setting WHERE varname='warn_textbutoption';
[/SQL]
the optioncode for that option should be
HTML Code:
<select name=\"setting[$setting[varname]]\" tabindex=\"1\" class=\"bginput\">
<option value=\"0\" " . iif($setting['value']=='0','selected="selected"') . ">Buttons
</option>
<option value=\"1\" " . iif($setting['value']=='1','selected="selected"') . ">text</option></select>