Index: trunk/phase3/includes/QueryPage.php |
— | — | @@ -393,7 +393,7 @@ |
394 | 394 | for( $i = 0; $i < $num && $row = $dbr->fetchObject( $res ); $i++ ) { |
395 | 395 | $line = $this->formatResult( $skin, $row ); |
396 | 396 | if( $line ) { |
397 | | - $attr = ( isset( $obj->usepatrol ) && $obj->usepatrol && $obj->patrolled == 0 ) |
| 397 | + $attr = ( isset( $row->usepatrol ) && $row->usepatrol && $row->patrolled == 0 ) |
398 | 398 | ? ' class="not-patrolled"' |
399 | 399 | : ''; |
400 | 400 | $html[] = $this->listoutput |
— | — | @@ -407,7 +407,7 @@ |
408 | 408 | $row = null; |
409 | 409 | $line = $this->formatResult( $skin, $row ); |
410 | 410 | if( $line ) { |
411 | | - $attr = ( isset( $obj->usepatrol ) && $obj->usepatrol && $obj->patrolled == 0 ) |
| 411 | + $attr = ( isset( $row->usepatrol ) && $row->usepatrol && $row->patrolled == 0 ) |
412 | 412 | ? ' class="not-patrolled"' |
413 | 413 | : ''; |
414 | 414 | $html[] = $this->listoutput |
Index: trunk/phase3/languages/messages/MessagesId.php |
— | — | @@ -1293,8 +1293,7 @@ |
1294 | 1294 | |
1295 | 1295 | # Watchlist |
1296 | 1296 | 'watchlist' => 'Daftar pantauan', |
1297 | | -'my-watchlist' => 'Daftar pantauan', |
1298 | | -'mywatchlist' => 'Pantauan saya', |
| 1297 | +'my-watchlist' => 'Pantauan saya', |
1299 | 1298 | 'watchlistfor' => "(untuk '''$1''')", |
1300 | 1299 | 'nowatchlist' => 'Daftar pantauan Anda kosong.', |
1301 | 1300 | 'watchlistanontext' => 'Silakan $1 untuk melihat atau menyunting daftar pantauan Anda.', |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -326,6 +326,7 @@ |
327 | 327 | * Special:Random and Special:Randomredirect now try harder to send the user to |
328 | 328 | a random page, and will give an error message if none really can be found |
329 | 329 | instead of sending the user to the main page like they used to |
| 330 | +* Fix object variable used for displaying "not-patrolled" CSS class on list |
330 | 331 | |
331 | 332 | == Maintenance == |
332 | 333 | |