diff options
| author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-11 21:36:52 +0000 | 
|---|---|---|
| committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-11 21:36:52 +0000 | 
| commit | 8dbf58c92c0ccc80f84585f3be7c37f3fa6fff83 (patch) | |
| tree | 7e0b5bbd2354eea2d7c76d8aa6f3908912ac34ef /engine/lib | |
| parent | a018857bb61d9d02f1841ec90b347404e25b9f9c (diff) | |
| download | elgg-8dbf58c92c0ccc80f84585f3be7c37f3fa6fff83.tar.gz elgg-8dbf58c92c0ccc80f84585f3be7c37f3fa6fff83.tar.bz2  | |
Fixed doc spacing that was throwing errors in PHP Code Sniffer.
git-svn-id: http://code.elgg.org/elgg/trunk@8116 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
| -rw-r--r-- | engine/lib/views.php | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/lib/views.php b/engine/lib/views.php index 9ad8fc347..21179507e 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -761,7 +761,7 @@ function elgg_view_entity(ElggEntity $entity, $full = false, $bypass = true, $de  	if (empty($contents)) {  		$contents = elgg_view("$entity_type/default", $vars, $bypass, $debug);  	} -	 +  	// Marcus Povey 20090616 : Speculative and low impact approach for fixing #964  	if ($full) {  		$annotations = elgg_view_entity_annotations($entity, $full); @@ -877,8 +877,8 @@ function elgg_view_annotation(ElggAnnotation $annotation, $full = true, $bypass   * @see elgg_list_entities_from_relationships()   * @see elgg_list_entities_from_annotations()   * - * @param array $entities    Array of entities - * @param array $vars        Display variables + * @param array $entities Array of entities + * @param array $vars     Display variables   *		'count'            The total number of entities across all pages   *		'offset'           The current indexing offset   *		'limit'            The number of entities to display per page @@ -909,7 +909,7 @@ $list_type_toggle = true, $pagination = true) {  			'list_type_toggle' => false,  			'offset' => $offset,  		); -		 +  		$vars = array_merge($defaults, $count);  	} else { @@ -927,7 +927,7 @@ $list_type_toggle = true, $pagination = true) {  			'list_class' => 'elgg-entity-list',  		);  	} -	 +  	$listtype = get_input('listtype', 'list');  	if ($listtype != 'list') {  		$vars['gallery'] = true; @@ -952,7 +952,7 @@ $list_type_toggle = true, $pagination = true) {   *		'full_view'  Display the full view of the annotation?   *		'list_class' CSS Class applied to the list   *		'offset_key' The url parameter key used for offset - *  + *   * @return string The list of annotations   * @access private   */  | 
