mirror of
https://github.com/vrana/adminer.git
synced 2025-08-19 04:41:25 +02:00
Allow only apostrophes in enums
Use possessive quantifier in enum to fit in backtrack limit
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
|
||||
include "./include/bootstrap.inc.php";
|
||||
|
||||
$enum_length = '\'(?:\'\'|[^\'\\\\]|\\\\.)*\'|"(?:""|[^"\\\\]|\\\\.)*"';
|
||||
$enum_length = "'(?:''|[^'\\\\]|\\\\.)*+'";
|
||||
$inout = array("IN", "OUT", "INOUT");
|
||||
|
||||
if (isset($_GET["select"]) && ($_POST["edit"] || $_POST["clone"]) && !$_POST["save"]) {
|
||||
|
Reference in New Issue
Block a user