1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +02:00

Switch inverse fix.

This commit is contained in:
Cameron
2017-03-03 08:49:52 -08:00
parent 2be943f45a
commit e78a50711f

View File

@@ -2371,6 +2371,8 @@ class e_form
public function flipswitch($name, $checked_enabled = false, $labels=array('on' =>LAN_ON, 'off' =>LAN_OFF), $options = array())
{
$value = $checked_enabled;
if(!empty($options['inverse']))
{
$checked_enabled = !$checked_enabled;
@@ -2407,7 +2409,7 @@ class e_form
e107::js('settings', array('bsSwitch' => $js_options));
e107::js('footer', '{e_WEB}js/bootstrap.switch.init.js', 'jquery', 5);
$text = $this->hidden($name, (int) $checked_enabled);
$text = $this->hidden($name, (int) $value);
$text .= $this->checkbox($switchName, (int) $checked_enabled, $checked_enabled);
return $text;