Index: trunk/phase3/includes/SpecialWatchlist.php |
— | — | @@ -184,7 +184,9 @@ |
185 | 185 | "\n\n" ); |
186 | 186 | } |
187 | 187 | if ( $wgShowUpdatedMarker ) { |
188 | | - $wltsfield=", ${watchlist}.wl_notificationtimestamp "; |
| 188 | + $wltsfield = ", ${watchlist}.wl_notificationtimestamp "; |
| 189 | + } else { |
| 190 | + $wltsfield = ''; |
189 | 191 | } |
190 | 192 | $sql = "SELECT ${recentchanges}.* ${wltsfield} |
191 | 193 | FROM $watchlist,$recentchanges |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -231,6 +231,7 @@ |
232 | 232 | * (bug 13885) Bump default $wgSVGMaxSize from 1024 to 2048 pixels |
233 | 233 | * (bug 13891) Show categories box even if all categories are hidden and user has |
234 | 234 | "show hidden categories" option on |
| 235 | +* (bug 13915) Undefined variable $wltsfield in includes/SpecialWatchlist.php |
235 | 236 | |
236 | 237 | |
237 | 238 | === API changes in 1.13 === |