From 61a9098b7d88656d0297a18c1b7685c04d1c64dc Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Thu, 26 Sep 2013 18:41:19 +0200 Subject: Add Helper and URLGenerator interfaces to server container --- lib/private/util.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/private/util.php') diff --git a/lib/private/util.php b/lib/private/util.php index ae9aef69b4c..04a020ff006 100755 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -982,9 +982,9 @@ class OC_Util { * @param string $url Url to get content * @return string of the response or false on error * This function get the content of a page via curl, if curl is enabled. - * If not, file_get_element is used. + * If not, file_get_contents is used. */ - public static function getUrlContent($url){ + public static function getUrlContent($url) { if (function_exists('curl_init')) { $curl = curl_init(); -- cgit v1.2.3