Index: trunk/extensions/CodeReview/CodeRevisionListView.php |
— | — | @@ -138,7 +138,7 @@ |
139 | 139 | case 'COUNT(cc_rev_id)': |
140 | 140 | return intval( $value ); |
141 | 141 | case 'cr_path': |
142 | | - return Xml::element('div', array( 'title' => htmlspecialchars( $value ) ), $wgLang->truncate( $value, 30, '...' )); |
| 142 | + return Xml::element('div', array( 'title' => htmlspecialchars( (string)$value ) ), $wgLang->truncate( (string)$value, 30, '...' )); |
143 | 143 | } |
144 | 144 | } |
145 | 145 | |