Commit 8afa9465 authored by David Girón's avatar David Girón Committed by Alexander Butenko

FIX #661: Incorrect switch case (#666)

dbObject has a switch case in line 644 : written as ";" .
parent 749934a6
......@@ -641,7 +641,7 @@ class dbObject {
continue;
switch ($type) {
case "text";
case "text":
$regexp = null;
break;
case "int":
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment