[resolved] small typo in include/admin/import.inc.php (+fix)

Found a bug? Tell us!!
Post Reply
badblock

[resolved] small typo in include/admin/import.inc.php (+fix)

Post by badblock »

Hi,

there is a small typo (missing semicolon) in include/admin/import.inc.php, here comes the cure (diff -u)

Code: Select all

--- import.inc.php.orig 2005-10-24 22:14:05.000000000 +0200
+++ import.inc.php      2005-10-24 22:14:17.000000000 +0200
@@ -65,7 +65,7 @@

             case 'UTF-8':
             default:
-                $out = utf8_decode($string)
+                $out = utf8_decode($string);
                 return $out;
         }
     }

bb
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: small typo in include/admin/import.inc.php (+fix)

Post by garvinhicking »

Thanks a lot, we patched it into our SVN yesterday! :)

Sorry for that mistake.

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply