From 417a35b80718fa3ca2963d96bca737ebf92e2a3a Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Tue, 26 Apr 2005 16:21:54 +0000 Subject: [PATCH] * Fixed a layout problem with the "Raw signitures" checkbox. --- includes/SpecialPreferences.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/includes/SpecialPreferences.php b/includes/SpecialPreferences.php index 77833ed751..3470b8a8d4 100644 --- a/includes/SpecialPreferences.php +++ b/includes/SpecialPreferences.php @@ -445,8 +445,18 @@ class PreferencesForm { ); } - $wgOut->addHTML( $this->addRow( wfMsg( 'yournick' ), "mNick}\" size='25' />") ); - $wgOut->addHTML( $this->getToggle( 'fancysig' ) ); + $wgOut->addHTML( + $this->addRow( + wfMsg( 'yournick' ), + "mNick}\" size='25' />" + ) . + # FIXME: The part should be where the   is, getToggle() needs + # to be changed to out return its output in two parts. -ævar + $this->addRow( + ' ', + $this->getToggle( 'fancysig' ) + ) + ); /** * If a bogus value is set, default to the content language. -- 2.20.1