From 1c9dc6526fad4fe4ee50d8784a715b61857107a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20H=C3=A4der?= Date: Wed, 17 May 2017 18:28:00 +0200 Subject: [PATCH] Continued: - added more curly braces - replaced if (blaFoo()) { return true; } return false; with return blaFoo(); - added spaces MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- include/text.php | 1 + 1 file changed, 1 insertion(+) diff --git a/include/text.php b/include/text.php index b7f7b5abb1..f3b94cd8cb 100644 --- a/include/text.php +++ b/include/text.php @@ -182,6 +182,7 @@ function autoname($len) { break; } } + if (substr($word, -1) == 'q') { $word = substr($word, 0, -1); }