aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--inc/confutils.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/confutils.php b/inc/confutils.php
index 8b61a8d5b..7a3a99856 100644
--- a/inc/confutils.php
+++ b/inc/confutils.php
@@ -360,7 +360,7 @@ function conf_decodeString($str) {
switch (substr($str,0,3)) {
case '<b>' : return base64_decode(substr($str,3));
case '<u>' : return convert_uudecode(substr($str,3));
- default: // not encode (or unknown)
+ default: // not encoded (or unknown)
return $str;
}
}