Replaced some hardcoded colons with the colon-separator message
[lhc/web/wiklou.git] / includes / Article.php
index 706f2b5..5bd3488 100644 (file)
@@ -2124,7 +2124,7 @@ class Article {
 
                if( $reason != 'other' && $this->DeleteReason != '' ) {
                        // Entry from drop down menu + additional comment
-                       $reason .= ': ' . $this->DeleteReason;
+                       $reason .= wfMsgForContent( 'colon-separator' ) . $this->DeleteReason;
                } elseif( $reason == 'other' ) {
                        $reason = $this->DeleteReason;
                }