'''Name''' '''Default text''' '''Current text''' "; print "Initialising \"MediaWiki\" namespace..."; foreach ( $wgAllMessagesEn as $key => $enMsg ) { $message = wfMsgNoDB( $key ); $titleObj = Title::newFromText( $key ); $title = $titleObj->getDBkey(); $dbencMsg = wfStrencode( $message ); $doInsert = true; if ( $overwrite ) { $sql = "DELETE FROM cur WHERE cur_namespace=$ns AND cur_title='$title'"; wfQuery( $sql, DB_WRITE, $fname ); } else { $row = wfGetArray("cur", array("1"), array("cur_namespace"=>$ns, "cur_title"=>$title)); if ($row) { $doInsert = false; } } if ( $doInsert ) { $sql = "INSERT INTO cur (cur_namespace, cur_title, cur_text, cur_user_text, cur_timestamp, cur_restrictions, cur_is_new, inverse_timestamp, cur_touched) VALUES ( $ns, '$title', '$dbencMsg', 'MediaWiki default', '$timestamp', 'sysop', 1, '$invTimestamp', '$timestamp')"; wfQuery( $sql, DB_WRITE, $fname ); } $mwObj =& MagicWord::get( MAG_MSGNW ); $mw = $mwObj->getSynonym( 0 ); $mw = str_replace( "$1", $key, $mw ); $message = wfEscapeWikiText( $message ); $navText .= " [$wgServer$wgScript?title=MediaWiki:$title&action=edit $key] $message $mw "; } $navText .= ""; $navText = wfStrencode( $navText ); $title = wfMsgNoDB( "allmessages" ); $sql = "DELETE FROM cur WHERE cur_namespace=$ns AND cur_title='$title'"; wfQuery( $sql, DB_WRITE, $fname ); $sql = "INSERT INTO cur (cur_namespace, cur_title, cur_text, cur_user_text, cur_timestamp, cur_restrictions, cur_is_new, inverse_timestamp, cur_touched) VALUES ( $ns, '$title', '$navText', 'MediaWiki default', '$timestamp', 'sysop', 1, '$invTimestamp', '$timestamp')"; wfQuery( $sql, DB_WRITE, $fname ); print "done \n"; }