r80685 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r80684‎ | r80685 | r80686 >
Date:14:37, 21 January 2011
Author:demon
Status:ok
Tags:
Comment:
(bug 26288) $wgDeletedDirectory looks funny on Windows because / should be \ although / is harmless.
Modified paths:
  • /trunk/phase3/includes/installer/WebInstallerPage.php (modified) (history)

Diff [purge]

Index: trunk/phase3/includes/installer/WebInstallerPage.php
@@ -809,6 +809,14 @@
810810 $this->addHTML( $extHtml );
811811 }
812812
 813+ // Having / in paths in Windows looks funny :)
 814+ $this->setVar( 'wgDeletedDirectory',
 815+ str_replace(
 816+ '/', DIRECTORY_SEPARATOR,
 817+ $this->getVar( 'wgDeletedDirectory' )
 818+ )
 819+ );
 820+
813821 $this->addHTML(
814822 # Uploading
815823 $this->getFieldSetStart( 'config-upload-settings' ) .

Follow-up revisions

RevisionCommit summaryAuthorDate
r807221.17: MFT r80324, r80326, r80328, r80339, r80350, r80351, r80355, r80358, r80...catrope23:00, 21 January 2011

Status & tagging log