diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-12 22:53:54 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-02-12 22:53:54 +0000 |
commit | e0431dfd7d0043551db9696cf5cb5a01ff30214c (patch) | |
tree | 7c5f9308b3a9d5adfffb13b1833c865e22e8412e /engine/lib/elgglib.php | |
parent | 9fbed88ef70966dd6075b40bd3a8ed4f609423e8 (diff) | |
download | elgg-e0431dfd7d0043551db9696cf5cb5a01ff30214c.tar.gz elgg-e0431dfd7d0043551db9696cf5cb5a01ff30214c.tar.bz2 |
Can't type hint for strings.
git-svn-id: http://code.elgg.org/elgg/trunk@3937 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/elgglib.php')
-rw-r--r-- | engine/lib/elgglib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index 0da106b8a..1ae488fb0 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -173,7 +173,7 @@ function elgg_get_view_location($view, $viewtype = '') { * @param string $viewtype If set, forces the viewtype for the elgg_view call to be this value (default: standard detection) * @return string The HTML content */ -function elgg_view(string $view, $vars = array(), $bypass = false, $debug = false, $viewtype = '') { +function elgg_view($view, $vars = array(), $bypass = false, $debug = false, $viewtype = '') { global $CONFIG; static $usercache; |