Index: trunk/extensions/CodeReview/backend/CodeRevision.php |
— | — | @@ -555,11 +555,13 @@ |
556 | 556 | protected function tagData( $tags ) { |
557 | 557 | $data = array(); |
558 | 558 | foreach ( $tags as $tag ) { |
| 559 | + if( $tag == '' ) continue; |
559 | 560 | $data[] = array( |
560 | 561 | 'ct_repo_id' => $this->mRepoId, |
561 | 562 | 'ct_rev_id' => $this->mId, |
562 | 563 | 'ct_tag' => $this->normalizeTag( $tag ) ); |
563 | 564 | } |
| 565 | + var_dump( $tags ); moo(); |
564 | 566 | return $data; |
565 | 567 | } |
566 | 568 | |