diff options
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/lib/annotations.php | 2 | ||||
| -rw-r--r-- | engine/lib/api.php | 5 | 
2 files changed, 5 insertions, 2 deletions
| diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index ac002f394..0bb29c408 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -564,6 +564,8 @@ $timelower = 0, $timeupper = 0) {  function list_entities_from_annotations($entity_type = "", $entity_subtype = "", $name = "", $value = "", $limit = 10, $owner_guid = 0, $group_guid = 0, $asc = false, $fullview = true, $viewtypetoggle = false) {  	elgg_deprecated_notice('list_entities_from_annotations is deprecated by elgg_list_entities_from_annotations', 1.8); +	$options = array(); +	  	if ($entity_type) {  		$options['types'] = $entity_type;  	} diff --git a/engine/lib/api.php b/engine/lib/api.php index 0da0c82f0..a3869d262 100644 --- a/engine/lib/api.php +++ b/engine/lib/api.php @@ -290,9 +290,10 @@ class ElggHMACCache extends ElggCache {   * 			"description" => "Some human readable description"   * 			"function" = 'my_function_callback'   * 			"parameters" = array ( - * 				"variable" = array ( // NB, the order should be the same as the function callback + * 				"variable" = array ( // the order should be the same as the function callback   * 					type => 'int' | 'bool' | 'float' | 'string'   * 					required => true (default) | false + *					default => value // optional   * 				)   * 			)   * 			"call_method" = 'GET' | 'POST' @@ -313,7 +314,7 @@ $API_METHODS = array();   * @param string $method The api name to expose - for example "myapi.dosomething"   * @param string $function Your function callback.   * @param array $parameters (optional) List of parameters in the same order as in your function. - * Default values may be set for parameters which would allow REST api users flexibility in + * Default values may be set for parameters which allow REST api users flexibility in   * what parameters are passed. Generally, optional parameters should be after required parameters.   * This array should be in the format   *   "variable" = array ( | 
