diff options
author | Andreas Gohr <andi@splitbrain.org> | 2016-08-03 11:09:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-03 11:09:15 +0200 |
commit | 3eb8980bccc4529357f84465d1a6873232fe938d (patch) | |
tree | 71bf38e58e468128723469ad1286cdac72467a9c | |
parent | 2403876075264e271feec7876e22d193f0c29359 (diff) | |
parent | b96ff25bcaf2b512da375df2dc4ae2940f201cbb (diff) | |
download | dokuwiki-3eb8980bccc4529357f84465d1a6873232fe938d.tar.gz dokuwiki-3eb8980bccc4529357f84465d1a6873232fe938d.zip |
Merge pull request #1654 from glensc/patch-1
Update confutils.php
-rw-r--r-- | inc/confutils.php | 2 |
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; } } |