From 22ef18793bb3dff1780800c5e05df9b51c2a5eba Mon Sep 17 00:00:00 2001 From: Florian Beer Date: Sun, 7 Aug 2016 15:39:03 +0200 Subject: [PATCH] Fix: Use of undefined constant yes - assumed 'yes' --- html/includes/vars.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/includes/vars.inc.php b/html/includes/vars.inc.php index 369a13a74a..bca2c2577c 100644 --- a/html/includes/vars.inc.php +++ b/html/includes/vars.inc.php @@ -28,7 +28,7 @@ foreach ($segments as $pos => $segment) { else { list($name, $value) = explode('=', $segment); if ($value == '' || !isset($value)) { - $vars[$name] = yes; + $vars[$name] = 'yes'; } else { $vars[$name] = $value;