diff options
Diffstat (limited to 'engine/lib/input.php')
-rw-r--r-- | engine/lib/input.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/lib/input.php b/engine/lib/input.php index cf0af2b8e..e5daa70ea 100644 --- a/engine/lib/input.php +++ b/engine/lib/input.php @@ -19,7 +19,7 @@ * @param $default mixed A default value for the variable if it is not found. * @param $filter_result If true then the result is filtered for bad tags. */ -function get_input($variable, $default = "", $filter_result = true) { +function get_input($variable, $default = NULL, $filter_result = TRUE) { global $CONFIG; @@ -237,7 +237,7 @@ function input_livesearch_page_handler($page) { default: // arbitrary subtype. - //@todo you cannot specify a subtype without a type. + //@todo you cannot specify a subtype without a type. // did this ever work? elgg_get_entities(array('subtype' => $type, 'owner_guid' => $owner_guid)); break; |