Completed
Pull Request — master (#717)
by
unknown
03:11
created
lib/timber-post.php 2 patches
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -736,33 +736,33 @@
 block discarded – undo
736 736
 			$overridden_cpage = true;
737 737
 		}
738 738
 
739
-    foreach($comments as $key => &$comment) {
740
-      $timber_comment = new $CommentClass($comment);
741
-      $timber_comment->reply_link = $this->TimberComment_reply_link($comment->comment_ID, $this->ID);
742
-      $timber_comments[$timber_comment->id] = $timber_comment;
743
-    }
739
+	foreach($comments as $key => &$comment) {
740
+	  $timber_comment = new $CommentClass($comment);
741
+	  $timber_comment->reply_link = $this->TimberComment_reply_link($comment->comment_ID, $this->ID);
742
+	  $timber_comments[$timber_comment->id] = $timber_comment;
743
+	}
744 744
 
745 745
 		// Build a flattened (depth=1) comment tree
746 746
 		$comments_tree = array();
747
-    foreach( $timber_comments as $key => $comment ) {
748
-      if ( ! $comment->is_child() ) {
749
-         continue;
750
-      }
751
-
752
-      $tree_element = $comment;
753
-      do {
754
-        $tree_element = $timber_comments[$tree_element->comment_parent];
755
-      } while($tree_element->is_child());
756
-      $comments_tree[$tree_element->id][] = $comment->id;
757
-    }
758
-
759
-    // Add child comments to the relative "super parents"
760
-    foreach($comments_tree as $comment_parent => $comment_children) {
761
-      foreach($comment_children as $comment_child) {
762
-        $timber_comments[$comment_parent]->children[] = $timber_comments[$comment_child];
763
-        unset($timber_comments[$comment_child]);
764
-      }
765
-    }
747
+	foreach( $timber_comments as $key => $comment ) {
748
+	  if ( ! $comment->is_child() ) {
749
+		 continue;
750
+	  }
751
+
752
+	  $tree_element = $comment;
753
+	  do {
754
+		$tree_element = $timber_comments[$tree_element->comment_parent];
755
+	  } while($tree_element->is_child());
756
+	  $comments_tree[$tree_element->id][] = $comment->id;
757
+	}
758
+
759
+	// Add child comments to the relative "super parents"
760
+	foreach($comments_tree as $comment_parent => $comment_children) {
761
+	  foreach($comment_children as $comment_child) {
762
+		$timber_comments[$comment_parent]->children[] = $timber_comments[$comment_child];
763
+		unset($timber_comments[$comment_child]);
764
+	  }
765
+	}
766 766
 
767 767
 		$timber_comments = array_values($timber_comments);
768 768
 
Please login to merge, or discard this patch.
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
 	 * @param mixed $pid
169 169
 	 */
170 170
 	public function __construct($pid = null) {
171
-		$pid = $this->determine_id( $pid );
171
+		$pid = $this->determine_id($pid);
172 172
 		$this->init($pid);
173 173
 	}
174 174
 
@@ -188,13 +188,13 @@  discard block
 block discarded – undo
188 188
 			&& get_class($wp_query->queried_object) == 'WP_Post'
189 189
 			) {
190 190
 			$pid = $wp_query->queried_object_id;
191
-		} else if ( $pid === null && $wp_query->is_home && isset($wp_query->queried_object_id) && $wp_query->queried_object_id )  {
191
+		} else if ( $pid === null && $wp_query->is_home && isset($wp_query->queried_object_id) && $wp_query->queried_object_id ) {
192 192
 			//hack for static page as home page
193 193
 			$pid = $wp_query->queried_object_id;
194 194
 		} else if ( $pid === null ) {
195 195
 			$gtid = false;
196 196
 			$maybe_post = get_post();
197
-			if ( isset($maybe_post->ID) ){
197
+			if ( isset($maybe_post->ID) ) {
198 198
 				$gtid = true;
199 199
 			}
200 200
 			if ( $gtid ) {
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
 	 * @param string $field
261 261
 	 * @param mixed $value
262 262
 	 */
263
-	public function update( $field, $value ) {
263
+	public function update($field, $value) {
264 264
 		if ( isset($this->ID) ) {
265 265
 			update_post_meta($this->ID, $field, $value);
266 266
 			$this->$field = $value;
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
 	 * @param mixed $pid
276 276
 	 * @return WP_Post on success
277 277
 	 */
278
-	protected function prepare_post_info( $pid = 0 ) {
278
+	protected function prepare_post_info($pid = 0) {
279 279
 		if ( is_string($pid) || is_numeric($pid) || (is_object($pid) && !isset($pid->post_title)) || $pid === 0 ) {
280 280
 			$pid = self::check_post_id($pid);
281 281
 			$post = get_post($pid);
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
 	 * @internal
298 298
 	 * @return integer ID number of a post
299 299
 	 */
300
-	protected function check_post_id( $pid ) {
300
+	protected function check_post_id($pid) {
301 301
 		if ( is_numeric($pid) && $pid === 0 ) {
302 302
 			$pid = get_the_ID();
303 303
 			return $pid;
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
 		global $wpdb;
324 324
 		$query = $wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_name = %s LIMIT 1", $post_name);
325 325
 		$result = $wpdb->get_row($query);
326
-		if (!$result) {
326
+		if ( !$result ) {
327 327
 			return null;
328 328
 		}
329 329
 		return $result->ID;
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
 				$text = TimberHelper::trim_words($text, $len, false);
363 363
 				$trimmed = true;
364 364
 			}
365
-			$text = do_shortcode( $text );
365
+			$text = do_shortcode($text);
366 366
 		}
367 367
 		if ( !strlen($text) ) {
368 368
 			$text = TimberHelper::trim_words($this->get_content(), $len, false);
@@ -391,11 +391,11 @@  discard block
 block discarded – undo
391 391
 			}
392 392
 			$read_more_class = apply_filters('timber/post/get_preview/read_more_class', "read-more");
393 393
 			if ( $readmore && isset($readmore_matches) && !empty($readmore_matches[1]) ) {
394
-				$text .= ' <a href="' . $this->get_permalink() . '" class="'.$read_more_class .'">' . trim($readmore_matches[1]) . '</a>';
394
+				$text .= ' <a href="' . $this->get_permalink() . '" class="' . $read_more_class . '">' . trim($readmore_matches[1]) . '</a>';
395 395
 			} elseif ( $readmore ) {
396
-				$text .= ' <a href="' . $this->get_permalink() . '" class="'.$read_more_class .'">' . trim($readmore) . '</a>';
396
+				$text .= ' <a href="' . $this->get_permalink() . '" class="' . $read_more_class . '">' . trim($readmore) . '</a>';
397 397
 			}
398
-			if ( !$strip && $last_p_tag && ( strpos($text, '<p>') || strpos($text, '<p ') ) ) {
398
+			if ( !$strip && $last_p_tag && (strpos($text, '<p>') || strpos($text, '<p ')) ) {
399 399
 				$text .= '</p>';
400 400
 			}
401 401
 		}
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
 	 * @internal
408 408
 	 * @param bool|int $pid a post ID number
409 409
 	 */
410
-	function import_custom( $pid = false ) {
410
+	function import_custom($pid = false) {
411 411
 		if ( !$pid ) {
412 412
 			$pid = $this->ID;
413 413
 		}
@@ -422,13 +422,13 @@  discard block
 block discarded – undo
422 422
 	 * @param int $pid
423 423
 	 * @return array
424 424
 	 */
425
-	protected function get_post_custom( $pid ) {
425
+	protected function get_post_custom($pid) {
426 426
 		apply_filters('timber_post_get_meta_pre', array(), $pid, $this);
427 427
 		$customs = get_post_custom($pid);
428 428
 		if ( !is_array($customs) || empty($customs) ) {
429 429
 			return array();
430 430
 		}
431
-		foreach ( $customs as $key => $value ) {
431
+		foreach ($customs as $key => $value) {
432 432
 			if ( is_array($value) && count($value) == 1 && isset($value[0]) ) {
433 433
 				$value = $value[0];
434 434
 			}
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
 	 * @param bool $taxonomy
483 483
 	 * @return TimberPost|boolean
484 484
 	 */
485
-	function get_next( $taxonomy = false ) {
485
+	function get_next($taxonomy = false) {
486 486
 		if ( !isset($this->_next) || !isset($this->_next[$taxonomy]) ) {
487 487
 			global $post;
488 488
 			$this->_next = array();
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
 		$post = $this;
514 514
 		$ret = array();
515 515
 		if ( $multipage ) {
516
-			for ( $i = 1; $i <= $numpages; $i++ ) {
516
+			for ($i = 1; $i <= $numpages; $i++) {
517 517
 				$link = self::get_wp_link_page($i);
518 518
 				$data = array('name' => $i, 'title' => $i, 'text' => $i, 'link' => $link);
519 519
 				if ( $i == $page ) {
@@ -565,7 +565,7 @@  discard block
 block discarded – undo
565 565
 	 * @param bool $taxonomy
566 566
 	 * @return TimberPost|boolean
567 567
 	 */
568
-	function get_prev( $taxonomy = false ) {
568
+	function get_prev($taxonomy = false) {
569 569
 		if ( isset($this->_prev) && isset($this->_prev[$taxonomy]) ) {
570 570
 			return $this->_prev[$taxonomy];
571 571
 		}
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
 		$post->slug = $post->post_name;
633 633
 		$customs = $this->get_post_custom($post->ID);
634 634
 		$post->custom = $customs;
635
-		$post = (object) array_merge((array)$customs, (array)$post);
635
+		$post = (object) array_merge((array) $customs, (array) $post);
636 636
 		return $post;
637 637
 	}
638 638
 
@@ -643,7 +643,7 @@  discard block
 block discarded – undo
643 643
 	 * @param string $use
644 644
 	 * @return string
645 645
 	 */
646
-	function get_display_date( $use = 'post_date' ) {
646
+	function get_display_date($use = 'post_date') {
647 647
 		return date(get_option('date_format'), strtotime($this->$use));
648 648
 	}
649 649
 
@@ -653,9 +653,9 @@  discard block
 block discarded – undo
653 653
 	 * @param  string $date_format
654 654
 	 * @return string
655 655
 	 */
656
-	function get_date( $date_format = '' ) {
656
+	function get_date($date_format = '') {
657 657
 		$df = $date_format ? $date_format : get_option('date_format');
658
-		$the_date = (string)mysql2date($df, $this->post_date);
658
+		$the_date = (string) mysql2date($df, $this->post_date);
659 659
 		return apply_filters('get_the_date', $the_date, $df);
660 660
 	}
661 661
 
@@ -664,7 +664,7 @@  discard block
 block discarded – undo
664 664
 	 * @param  string $date_format
665 665
 	 * @return string
666 666
 	 */
667
-	function get_modified_date( $date_format = '' ) {
667
+	function get_modified_date($date_format = '') {
668 668
 		$df = $date_format ? $date_format : get_option('date_format');
669 669
 		$the_time = $this->get_modified_time($df);
670 670
 		return apply_filters('get_the_modified_date', $the_time, $date_format);
@@ -675,7 +675,7 @@  discard block
 block discarded – undo
675 675
 	 * @param  string $time_format
676 676
 	 * @return string
677 677
 	 */
678
-	function get_modified_time( $time_format = '' ) {
678
+	function get_modified_time($time_format = '') {
679 679
 		$tf = $time_format ? $time_format : get_option('time_format');
680 680
 		$the_time = get_post_modified_time($tf, false, $this->ID, true);
681 681
 		return apply_filters('get_the_modified_time', $the_time, $time_format);
@@ -688,7 +688,7 @@  discard block
 block discarded – undo
688 688
 	 * @param bool|string 	$childPostClass
689 689
 	 * @return array
690 690
 	 */
691
-	function get_children( $post_type = 'any', $childPostClass = false ) {
691
+	function get_children($post_type = 'any', $childPostClass = false) {
692 692
 		if ( $childPostClass === false ) {
693 693
 			$childPostClass = $this->PostClass;
694 694
 		}
@@ -696,7 +696,7 @@  discard block
 block discarded – undo
696 696
 			$post_type = $this->post_type;
697 697
 		}
698 698
 		$children = get_children('post_parent=' . $this->ID . '&post_type=' . $post_type . '&numberposts=-1&orderby=menu_order title&order=ASC');
699
-		foreach ( $children as &$child ) {
699
+		foreach ($children as &$child) {
700 700
 			$child = new $childPostClass($child->ID);
701 701
 		}
702 702
 		$children = array_values($children);
@@ -732,11 +732,11 @@  discard block
 block discarded – undo
732 732
 		$timber_comments = array();
733 733
 
734 734
 		if ( '' == get_query_var('cpage') && get_option('page_comments') ) {
735
-			set_query_var( 'cpage', 'newest' == get_option('default_comments_page') ? get_comment_pages_count() : 1 );
735
+			set_query_var('cpage', 'newest' == get_option('default_comments_page') ? get_comment_pages_count() : 1);
736 736
 			$overridden_cpage = true;
737 737
 		}
738 738
 
739
-    foreach($comments as $key => &$comment) {
739
+    foreach ($comments as $key => &$comment) {
740 740
       $timber_comment = new $CommentClass($comment);
741 741
       $timber_comment->reply_link = $this->TimberComment_reply_link($comment->comment_ID, $this->ID);
742 742
       $timber_comments[$timber_comment->id] = $timber_comment;
@@ -744,21 +744,21 @@  discard block
 block discarded – undo
744 744
 
745 745
 		// Build a flattened (depth=1) comment tree
746 746
 		$comments_tree = array();
747
-    foreach( $timber_comments as $key => $comment ) {
748
-      if ( ! $comment->is_child() ) {
747
+    foreach ($timber_comments as $key => $comment) {
748
+      if ( !$comment->is_child() ) {
749 749
          continue;
750 750
       }
751 751
 
752 752
       $tree_element = $comment;
753 753
       do {
754 754
         $tree_element = $timber_comments[$tree_element->comment_parent];
755
-      } while($tree_element->is_child());
755
+      } while ($tree_element->is_child());
756 756
       $comments_tree[$tree_element->id][] = $comment->id;
757 757
     }
758 758
 
759 759
     // Add child comments to the relative "super parents"
760
-    foreach($comments_tree as $comment_parent => $comment_children) {
761
-      foreach($comment_children as $comment_child) {
760
+    foreach ($comments_tree as $comment_parent => $comment_children) {
761
+      foreach ($comment_children as $comment_child) {
762 762
         $timber_comments[$comment_parent]->children[] = $timber_comments[$comment_child];
763 763
         unset($timber_comments[$comment_child]);
764 764
       }
@@ -798,7 +798,7 @@  discard block
 block discarded – undo
798 798
 	 * @param string $TermClass
799 799
 	 * @return array
800 800
 	 */
801
-	function get_terms( $tax = '', $merge = true, $TermClass = '' ) {
801
+	function get_terms($tax = '', $merge = true, $TermClass = '') {
802 802
 
803 803
 		$TermClass = $TermClass ?: $this->TermClass;
804 804
 
@@ -809,7 +809,7 @@  discard block
 block discarded – undo
809 809
 			$taxonomies = $tax;
810 810
 		}
811 811
 		if ( is_string($tax) ) {
812
-			if ( in_array($tax, array('all','any','')) ) {
812
+			if ( in_array($tax, array('all', 'any', '')) ) {
813 813
 				$taxonomies = get_object_taxonomies($this->post_type);
814 814
 			} else {
815 815
 				$taxonomies = array($tax);
@@ -818,8 +818,8 @@  discard block
 block discarded – undo
818 818
 
819 819
 		$term_class_objects = array();
820 820
 
821
-		foreach ( $taxonomies as $taxonomy ) {
822
-			if ( in_array($taxonomy, array('tag','tags')) ) {
821
+		foreach ($taxonomies as $taxonomy) {
822
+			if ( in_array($taxonomy, array('tag', 'tags')) ) {
823 823
 				$taxonomy = 'post_tag';
824 824
 			}
825 825
 			if ( $taxonomy == 'categories' ) {
@@ -857,11 +857,11 @@  discard block
 block discarded – undo
857 857
 	 * @param string $taxonomy
858 858
 	 * @return bool
859 859
 	 */
860
-	function has_term( $term_name_or_id, $taxonomy = 'all' ) {
860
+	function has_term($term_name_or_id, $taxonomy = 'all') {
861 861
 		if ( $taxonomy == 'all' || $taxonomy == 'any' ) {
862 862
 			$taxes = get_object_taxonomies($this->post_type, 'names');
863 863
 			$ret = false;
864
-			foreach ( $taxes as $tax ) {
864
+			foreach ($taxes as $tax) {
865 865
 				if ( has_term($term_name_or_id, $tax, $this->ID) ) {
866 866
 					$ret = true;
867 867
 					break;
@@ -876,7 +876,7 @@  discard block
 block discarded – undo
876 876
 	 * @param string $field
877 877
 	 * @return TimberImage
878 878
 	 */
879
-	function get_image( $field ) {
879
+	function get_image($field) {
880 880
 		return new $this->ImageClass($this->$field);
881 881
 	}
882 882
 
@@ -926,7 +926,7 @@  discard block
 block discarded – undo
926 926
 	 * @param int $page
927 927
 	 * @return string
928 928
 	 */
929
-	function get_content( $len = 0, $page = 0 ) {
929
+	function get_content($len = 0, $page = 0) {
930 930
 		if ( $len == 0 && $page == 0 && $this->_content ) {
931 931
 			return $this->_content;
932 932
 		}
@@ -987,7 +987,7 @@  discard block
 block discarded – undo
987 987
 	 * @param string $field_name
988 988
 	 * @return mixed
989 989
 	 */
990
-	public function get_field( $field_name ) {
990
+	public function get_field($field_name) {
991 991
 		$value = apply_filters('timber_post_get_meta_field_pre', null, $this->ID, $field_name, $this);
992 992
 		if ( $value === null ) {
993 993
 			$value = get_post_meta($this->ID, $field_name);
@@ -1005,7 +1005,7 @@  discard block
 block discarded – undo
1005 1005
 	/**
1006 1006
 	 * @param string $field_name
1007 1007
 	 */
1008
-	function import_field( $field_name ) {
1008
+	function import_field($field_name) {
1009 1009
 		$this->$field_name = $this->get_field($field_name);
1010 1010
 	}
1011 1011
 
@@ -1036,13 +1036,13 @@  discard block
 block discarded – undo
1036 1036
 	 * ```
1037 1037
 	 * @return string a space-seperated list of classes
1038 1038
 	 */
1039
-	public function post_class( $class='' ) {
1039
+	public function post_class($class = '') {
1040 1040
 		global $post;
1041 1041
 		$old_global_post = $post;
1042 1042
 		$post = $this;
1043 1043
 		$class_array = get_post_class($class, $this->ID);
1044 1044
 		$post = $old_global_post;
1045
-		if ( is_array($class_array) ){
1045
+		if ( is_array($class_array) ) {
1046 1046
 			return implode(' ', $class_array);
1047 1047
 		}
1048 1048
 		return $class_array;
@@ -1144,8 +1144,8 @@  discard block
 block discarded – undo
1144 1144
 	 * @param string|bool $childPostClass _optional_ a custom post class (ex: 'MyTimberPost') to return the objects as. By default (false) it will use TimberPost::$post_class value.
1145 1145
 	 * @return array
1146 1146
 	 */
1147
-	public function children( $post_type = 'any', $childPostClass = false ) {
1148
-		return $this->get_children( $post_type, $childPostClass );
1147
+	public function children($post_type = 'any', $childPostClass = false) {
1148
+		return $this->get_children($post_type, $childPostClass);
1149 1149
 	}
1150 1150
 
1151 1151
 	/**
@@ -1169,7 +1169,7 @@  discard block
 block discarded – undo
1169 1169
 	 * ```
1170 1170
 	 * @return bool|array
1171 1171
 	 */
1172
-	public function comments( $count = 0, $order = 'wp', $type = 'comment', $status = 'approve', $CommentClass = 'TimberComment' ) {
1172
+	public function comments($count = 0, $order = 'wp', $type = 'comment', $status = 'approve', $CommentClass = 'TimberComment') {
1173 1173
 		return $this->get_comments($count, $order, $type, $status, $CommentClass);
1174 1174
 	}
1175 1175
 
@@ -1186,7 +1186,7 @@  discard block
 block discarded – undo
1186 1186
 	 * @param int $page
1187 1187
 	 * @return string
1188 1188
 	 */
1189
-	public function content( $page = 0 ) {
1189
+	public function content($page = 0) {
1190 1190
 		return $this->get_content(0, $page);
1191 1191
 	}
1192 1192
 
@@ -1215,7 +1215,7 @@  discard block
 block discarded – undo
1215 1215
 	 * @param string $date_format
1216 1216
 	 * @return string
1217 1217
 	 */
1218
-	public function date( $date_format = '' ) {
1218
+	public function date($date_format = '') {
1219 1219
 		return $this->get_date($date_format);
1220 1220
 	}
1221 1221
 
@@ -1237,9 +1237,9 @@  discard block
 block discarded – undo
1237 1237
 	 * @param string $time_format
1238 1238
 	 * @return string
1239 1239
 	 */
1240
-	public function time( $time_format = '' ) {
1240
+	public function time($time_format = '') {
1241 1241
 		$tf = $time_format ? $time_format : get_option('time_format');
1242
-	 	$the_time = (string)mysql2date($tf, $this->post_date);
1242
+	 	$the_time = (string) mysql2date($tf, $this->post_date);
1243 1243
 	 	return apply_filters('get_the_time', $the_time, $tf);
1244 1244
 	}
1245 1245
 
@@ -1275,7 +1275,7 @@  discard block
 block discarded – undo
1275 1275
 	 * @param string $field_name
1276 1276
 	 * @return mixed
1277 1277
 	 */
1278
-	public function meta( $field_name = null ) {
1278
+	public function meta($field_name = null) {
1279 1279
 		if ( $field_name === null ) {
1280 1280
 			//on the off-chance the field is actually named meta
1281 1281
 			$field_name = 'meta';
@@ -1286,7 +1286,7 @@  discard block
 block discarded – undo
1286 1286
 	/**
1287 1287
 	 * @return string
1288 1288
 	 */
1289
-	public function name(){
1289
+	public function name() {
1290 1290
 		return $this->title();
1291 1291
 	}
1292 1292
 
@@ -1294,7 +1294,7 @@  discard block
 block discarded – undo
1294 1294
 	 * @param string $date_format
1295 1295
 	 * @return string
1296 1296
 	 */
1297
-	public function modified_date( $date_format = '' ) {
1297
+	public function modified_date($date_format = '') {
1298 1298
 		return $this->get_modified_date($date_format);
1299 1299
 	}
1300 1300
 
@@ -1302,7 +1302,7 @@  discard block
 block discarded – undo
1302 1302
 	 * @param string $time_format
1303 1303
 	 * @return string
1304 1304
 	 */
1305
-	public function modified_time( $time_format = '' ) {
1305
+	public function modified_time($time_format = '') {
1306 1306
 		return $this->get_modified_time($time_format);
1307 1307
 	}
1308 1308
 
@@ -1311,7 +1311,7 @@  discard block
 block discarded – undo
1311 1311
 	 * @param bool $in_same_cat
1312 1312
 	 * @return mixed
1313 1313
 	 */
1314
-	public function next( $in_same_cat = false ) {
1314
+	public function next($in_same_cat = false) {
1315 1315
 		return $this->get_next($in_same_cat);
1316 1316
 	}
1317 1317
 
@@ -1369,7 +1369,7 @@  discard block
 block discarded – undo
1369 1369
 	 * @param bool $in_same_cat
1370 1370
 	 * @return mixed
1371 1371
 	 */
1372
-	public function prev( $in_same_cat = false ) {
1372
+	public function prev($in_same_cat = false) {
1373 1373
 		return $this->get_prev($in_same_cat);
1374 1374
 	}
1375 1375
 
@@ -1381,7 +1381,7 @@  discard block
 block discarded – undo
1381 1381
 	 * @param bool $merge Should the resulting array be one big one (true)? Or should it be an array of sub-arrays for each taxonomy (false)?
1382 1382
 	 * @return array
1383 1383
 	 */
1384
-	public function terms( $tax = '', $merge = true ) {
1384
+	public function terms($tax = '', $merge = true) {
1385 1385
 		return $this->get_terms($tax, $merge);
1386 1386
 	}
1387 1387
 
Please login to merge, or discard this patch.