diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-09-26 18:41:19 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-10-04 18:11:02 +0200 |
commit | 61a9098b7d88656d0297a18c1b7685c04d1c64dc (patch) | |
tree | 085e22056dcf0bfdfd50468398bcdd367b8bd224 /lib/private/util.php | |
parent | ce9436c0518d8ce522646dde33dbac141cc35c46 (diff) | |
download | nextcloud-server-61a9098b7d88656d0297a18c1b7685c04d1c64dc.tar.gz nextcloud-server-61a9098b7d88656d0297a18c1b7685c04d1c64dc.zip |
Add Helper and URLGenerator interfaces to server container
Diffstat (limited to 'lib/private/util.php')
-rwxr-xr-x | lib/private/util.php | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |