From d5a25968844243b47b57a5ca69f8c844eaa40527 Mon Sep 17 00:00:00 2001 From: Robbie Antenesse Date: Mon, 29 Feb 2016 14:43:41 -0700 Subject: [PATCH] Fix Saving Allow Duplicates setting. --- php/ajax_dictionarymanagement.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/ajax_dictionarymanagement.php b/php/ajax_dictionarymanagement.php index 2634751..f56e105 100644 --- a/php/ajax_dictionarymanagement.php +++ b/php/ajax_dictionarymanagement.php @@ -142,7 +142,7 @@ function Update_Current_Dictionary() { if (isset($_POST['nextwordid'])) { $query .= "`next_word_id`=" . $_POST['nextwordid'] . ", "; } - if (isset($_POST['allowDuplicates'])) { + if (isset($_POST['allowduplicates'])) { $query .= "`allow_duplicates`=" . $_POST['allowduplicates'] . ", "; } if (isset($_POST['casesensitive'])) {