Skip to content

Commit 8afa946

Browse files
duhowavbdr
authored andcommitted
FIX #661: Incorrect switch case (#666)
dbObject has a switch case in line 644 : written as ";" .
1 parent 749934a commit 8afa946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dbObject.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ private function validate ($data) {
641641
continue;
642642

643643
switch ($type) {
644-
case "text";
644+
case "text":
645645
$regexp = null;
646646
break;
647647
case "int":

0 commit comments

Comments
 (0)