Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2014-05-09 11:50:46 +0400
committerMarc Delisle <marc@infomarc.info>2014-05-09 11:50:46 +0400
commita391dd93ab7c942d70895b5f38f3c9807f16bb8d (patch)
treebaff1eeaa42c4a23094e02da3bc5b4f119f96390 /js/tbl_change.js
parent963197cad1119ec0e2fc8b38200f381e6b4a0031 (diff)
Use dot notation
Signed-off-by: Marc Delisle <marc@infomarc.info>
Diffstat (limited to 'js/tbl_change.js')
-rw-r--r--js/tbl_change.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tbl_change.js b/js/tbl_change.js
index 0f3cd4a068..75354a6e93 100644
--- a/js/tbl_change.js
+++ b/js/tbl_change.js
@@ -20,7 +20,7 @@
*/
function nullify(theType, urlField, md5Field, multi_edit)
{
- var rowForm = document.forms['insertForm'];
+ var rowForm = document.forms.insertForm;
if (typeof(rowForm.elements['funcs' + multi_edit + '[' + md5Field + ']']) != 'undefined') {
rowForm.elements['funcs' + multi_edit + '[' + md5Field + ']'].selectedIndex = -1;