From: umherirrender Date: Fri, 31 Oct 2014 10:58:57 +0000 (+0100) Subject: Always return string on HTMLTagFilter::getInputHTML X-Git-Tag: 1.31.0-rc.0~13411^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/ajouter.php?a=commitdiff_plain;h=709eb0a4df906abdc19b9658a503f7b86039e18b;p=lhc%2Fweb%2Fwiklou.git Always return string on HTMLTagFilter::getInputHTML Follow-Up: I5c03dc543b910aab27a26a5a223341be50893cf3 Change-Id: I0bb0f2e2c95543089fbc3b12ebf45f93f9a90efc --- diff --git a/includes/htmlform/HTMLTagFilter.php b/includes/htmlform/HTMLTagFilter.php index da5e85c77a..eac9423998 100644 --- a/includes/htmlform/HTMLTagFilter.php +++ b/includes/htmlform/HTMLTagFilter.php @@ -10,6 +10,6 @@ class HTMLTagFilter extends HTMLFormField { // we only need the select field, HTMLForm should handle the label return $tagFilterSelector; } - return; + return ''; } }