From: Harris Wong Date: Thu, 6 Oct 2011 16:30:02 +0000 (-0000) Subject: AC_4877: Removed extra whitespace at the end of line. X-Git-Tag: v1.2~4 X-Git-Url: https://iam.tj/gitweb/gitweb.cgi?p=acontent.git;a=commitdiff_plain;h=9c45fdf384a7b07bc8ce5fa48a4914b09a6f2b05 AC_4877: Removed extra whitespace at the end of line. There are extra whitespaces at the end of: line 544: $package_base_path = array_intersect_assoc($package_base_path, $temp_path); There extra whitespaces are now removed. --- diff --git a/docs/home/ims/ims_import.php b/docs/home/ims/ims_import.php index 6637569..57ba69c 100644 --- a/docs/home/ims/ims_import.php +++ b/docs/home/ims/ims_import.php @@ -541,7 +541,7 @@ function removeCommonPath($items){ if (!strpos($resource_path, 'Share')) { $temp_path = pathinfo($resource_path); $temp_path = explode('/', $temp_path['dirname']); - $package_base_path = array_intersect_assoc($package_base_path, $temp_path); + $package_base_path = array_intersect_assoc($package_base_path, $temp_path); } } }