Index: trunk/phase3/maintenance/InitialiseMessages.inc |
— | — | @@ -109,7 +109,6 @@ |
110 | 110 | } |
111 | 111 | $titleObj = Title::newFromText( $key ); |
112 | 112 | $title = $titleObj->getDBkey(); |
113 | | - $dbencMsg = $dbw->strencode( $message ); |
114 | 113 | |
115 | 114 | # Update messages which already exist |
116 | 115 | if ( array_key_exists( $title, $existingTitles ) ) { |
— | — | @@ -124,7 +123,7 @@ |
125 | 124 | array_push( $arr, array( |
126 | 125 | 'cur_namespace' => $ns, |
127 | 126 | 'cur_title' => $title, |
128 | | - 'cur_text' => $dbencMsg, |
| 127 | + 'cur_text' => $message, |
129 | 128 | 'cur_user' => 0, |
130 | 129 | 'cur_user_text' => $username, |
131 | 130 | 'cur_timestamp' => $dbw->timestamp( $timestamp ), |