Create table keyboard shortcuts: Ctrl+Up, Ctrl+Down
Homepage customization
Use IN for search in numeric fields (Editor)
+Use password input for _md5 and _sha1 fields (Editor)
Work without session.use_cookies (bug #3138640)
Portuguese translation
if (ereg('date|timestamp', $field["type"])) {
return "<input value='" . h($value) . "'$attrs> (" . lang('[yyyy]-mm-dd') . ")"; //! maxlength
}
+ if (eregi('_(md5|sha1)$', $field["field"])) {
+ return "<input type='password' value='" . h($value) . "'$attrs>";
+ }
return '';
}