Revision 401
Added by Matthias almost 18 years ago
trunk/CHANGELOG | ||
---|---|---|
12 | 12 |
|
13 | 13 |
------------------------------------- 2.6.5 ------------------------------------- |
14 | 14 |
24-Dez-2006 Matthias Gallas |
15 |
# Fixed some minor javascript errors in admin (thanks to pcwacht) |
|
15 | 16 |
# Fixed root_parent doesn't get updated when moving item in menu (#305) |
16 | 17 |
! Changed all copyright notices to include now 2007 |
17 | 18 |
23-Dez-2006 Matthias Gallas |
trunk/wb/admin/templates/template.html | ||
---|---|---|
9 | 9 |
<table cellpadding="2" cellspacing="0" border="0" width="100%"> |
10 | 10 |
<tr> |
11 | 11 |
<td> |
12 |
<input type="file" name="userfile" size="82%" /> |
|
12 | 13 |
<script language="javascript" type="text/javascript"> |
13 |
document.install.file.focus(); |
|
14 |
document.install.userfile.focus();
|
|
14 | 15 |
</script> |
15 |
<input type="file" name="userfile" size="82%" /> |
|
16 | 16 |
</td> |
17 | 17 |
<td width="110" align="left"> |
18 | 18 |
<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" /> |
trunk/wb/admin/settings/template.html | ||
---|---|---|
62 | 62 |
<input type="text" name="website_title" value="{WEBSITE_TITLE}" /> |
63 | 63 |
</td> |
64 | 64 |
<script language="javascript" type="text/javascript"> |
65 |
document.settings.title.focus(); |
|
65 |
document.settings.website_title.focus();
|
|
66 | 66 |
</script> |
67 | 67 |
</tr> |
68 | 68 |
<tr> |
trunk/wb/admin/languages/template.html | ||
---|---|---|
7 | 7 |
<table cellpadding="2" cellspacing="0" border="0" width="100%"> |
8 | 8 |
<tr> |
9 | 9 |
<td> |
10 |
<input type="file" name="userfile" size="82%" /> |
|
10 | 11 |
<script language="javascript" type="text/javascript"> |
11 |
document.install.file.focus(); |
|
12 |
document.install.userfile.focus();
|
|
12 | 13 |
</script> |
13 |
<input type="file" name="userfile" size="82%" /> |
|
14 | 14 |
</td> |
15 | 15 |
<td width="110" align="left"> |
16 | 16 |
<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" /> |
trunk/wb/admin/modules/template.html | ||
---|---|---|
7 | 7 |
<table cellpadding="2" cellspacing="0" border="0" width="100%"> |
8 | 8 |
<tr> |
9 | 9 |
<td> |
10 |
<input type="file" name="userfile" size="82%" /> |
|
10 | 11 |
<script language="javascript" type="text/javascript"> |
11 |
document.install.file.focus(); |
|
12 |
document.install.userfile.focus();
|
|
12 | 13 |
</script> |
13 |
<input type="file" name="userfile" size="82%" /> |
|
14 | 14 |
</td> |
15 | 15 |
<td width="110" align="left"> |
16 | 16 |
<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" /> |
Also available in: Unified diff
Fixed some minor javascript errors in admin (thanks to pcwacht)