Index: trunk/extensions/ConfirmAccount/ConfirmAccount_body.php |
— | — | @@ -806,12 +806,14 @@ |
807 | 807 | |
808 | 808 | $form .= '<fieldset>'; |
809 | 809 | $form .= '<legend>' . wfMsgHtml('requestaccount-legend3') . '</legend>'; |
| 810 | + $form .= '<p>'.wfMsgHtml('confirmaccount-attach') . ' '; |
810 | 811 | if( $row->acr_filename ) { |
811 | | - $form .= '<p>'.wfMsgHtml('confirmaccount-attach') . ' ' . |
812 | | - $this->skin->makeKnownLinkObj( $wgTitle, htmlspecialchars($row->acr_filename), |
| 812 | + $form .= $this->skin->makeKnownLinkObj( $wgTitle, htmlspecialchars($row->acr_filename), |
813 | 813 | 'file=' . $row->acr_storage_key ); |
| 814 | + } else { |
| 815 | + $form .= wfMsgHtml('confirmaccount-none'); |
814 | 816 | } |
815 | | - $form .= "<p>".wfMsgHtml('confirmaccount-notes')."</p>\n"; |
| 817 | + $form .= "</p><p>".wfMsgHtml('confirmaccount-notes')."</p>\n"; |
816 | 818 | $form .= "<p><textarea tabindex='1' readonly name='wpNotes' id='wpNotes' rows='3' cols='80' style='width:100%'>" . |
817 | 819 | htmlspecialchars($row->acr_notes) . |
818 | 820 | "</textarea></p>\n"; |
— | — | @@ -878,7 +880,7 @@ |
879 | 881 | break; |
880 | 882 | } |
881 | 883 | if( $linkList == '' ) { |
882 | | - $linkList = wfMsgHtml( 'confirmaccount-nourls' ); |
| 884 | + $linkList = wfMsgHtml( 'confirmaccount-none' ); |
883 | 885 | } else { |
884 | 886 | $linkList = "<ul>$linkList</ul>"; |
885 | 887 | } |
Index: trunk/extensions/ConfirmAccount/ConfirmAccount.i18n.php |
— | — | @@ -89,7 +89,7 @@ |
90 | 90 | 'confirmaccount-attach' => 'Resume/CV:', |
91 | 91 | 'confirmaccount-notes' => 'Additional notes:', |
92 | 92 | 'confirmaccount-urls' => 'List of websites:', |
93 | | - 'confirmaccount-nourls' => '(None provided)', |
| 93 | + 'confirmaccount-none' => '(not provided)', |
94 | 94 | 'confirmaccount-review' => 'Approve/Reject', |
95 | 95 | 'confirmaccount-confirm' => 'Use the options below to accept, deny, or hold this request:', |
96 | 96 | 'confirmaccount-econf' => '(confirmed)', |