From: mudrd8mz Date: Sat, 20 Oct 2007 00:45:51 +0000 (+0000) Subject: Added tabindex so you can jump to another missing string field by pressing a TAB... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=cc8d91fa5f87aa7c5ec84820ad74ac4680ce15f3;p=moodle.git Added tabindex so you can jump to another missing string field by pressing a TAB key. --- diff --git a/admin/lang.php b/admin/lang.php index 2c5de4db98..2cd5a0f277 100644 --- a/admin/lang.php +++ b/admin/lang.php @@ -613,12 +613,12 @@ $cols=40; if (strstr($value, "\r") or strstr($value, "\n") or $valuelen > $cols) { $rows = ceil($valuelen / $cols); - $o .= ''."\n"; + $o .= ''."\n"; } else { if ($valuelen) { $cols = $valuelen + 5; } - $o .= ''; + $o .= ''; } if ($value2 <> '' && $value <> $value2) { $o .= '
'.$value2.'';