Page MenuHomePhabricator
Authored By
bzimport
Nov 21 2014, 11:48 PM
Size
594 B
Referenced Files
None
Subscribers
None
Index: HTMLForm.php
===================================================================
--- HTMLForm.php (revision 99130)
+++ HTMLForm.php (working copy)
@@ -1695,7 +1695,17 @@
} else {
$final = $this->getDefault();
- $list = $text = '';
+
+ $list = 'other';
+ $text = $final;
+ foreach ( $this->mFlatOptions as $option ) {
+ $match = $option . wfMsgForContent( 'colon-separator' );
+ if( strpos( $text, $match ) === 0 ) {
+ $list = $option;
+ $text = substr( $text, strlen( $match ) );
+ break;
+ }
+ }
}
return array( $final, $list, $text );
}

File Metadata

Mime Type
text/x-diff
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
7534
Default Alt Text
diff (594 B)

Event Timeline