! -> Note
$ -> Affected files
-18-Oct-2009 Joe Hunt
-# Fixed double escaping gl account name on add/update.
+18-Oct-2009 Janusz Dobrowolski
+# [0000175] Fixed double escaping gl account name on add/update.
$ /gl/includes/db/gl_db_accounts.inc
+# [0000176] Missing closing tag in button helper
+$ /includes/ui/ui_input.inc
------------------------------- Release 2.1.7 ----------------------------------
! Seccurity release 2.1.7. We strongly encourage to update to this release.
if (strpos($p, $m) === 0) {
// $selected_id = strtr(substr($p, strlen($m)), array('%2E'=>'.'));
unset($_POST['_focus']); // focus on first form entry
- $selected_id = quoted_printable_decode(substr($p, strlen($m)));
+
+// $selected_id = strtr(html_entity_decode(substr($p, strlen($m)), ENT_QUOTES),
+ $selected_id = strtr(substr($p, strlen($m)),
+ array('=2E'=>'.','=20'=>' ','=3D'=>'=','=5B'=>'['));
+// $selected_id = quoted_printable_decode(substr($p, strlen($m)));
$Ajax->activate('_page_body');
$Mode = $m;
return;
$icon = ICON_DELETE;
return "<button type='submit' class='editbutton' name='".
htmlentities(strtr($name, array('.'=>'=2E',' '=>'=20','='=>'=3D','['=>'=5B'))).
- "' value='1'" . ($title ? " title='$title'":" title='$value'")." />".set_icon($icon)."\n";
+ "' value='1'" . ($title ? " title='$title'":" title='$value'")." />".set_icon($icon)."</button>\n";
}
else
return "<input type='submit' class='editbutton' name='"