diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-29 05:51:07 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2005-06-29 05:51:07 +0000 |
commit | 52423ea7ff2ac0eaad39162b2c911e61d9f9ec4f (patch) | |
tree | 69a33d06a6de480782b8eda2c9c8f94bb0a4876b | |
parent | 36ecb66d14a2ecb3154d60f53dd2ce8c8a6beb29 (diff) | |
download | ampache-52423ea7ff2ac0eaad39162b2c911e61d9f9ec4f.tar.gz ampache-52423ea7ff2ac0eaad39162b2c911e61d9f9ec4f.tar.bz2 ampache-52423ea7ff2ac0eaad39162b2c911e61d9f9ec4f.zip |
more html fixes
-rw-r--r-- | lib/general.lib.php | 2 | ||||
-rw-r--r-- | templates/show_upload.inc | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/general.lib.php b/lib/general.lib.php index 83bf2bfc..e04f4f26 100644 --- a/lib/general.lib.php +++ b/lib/general.lib.php @@ -608,7 +608,7 @@ function get_global_popular($type) { } // end while if (count($items) == 0) { - $items[] = "<span class=\"error\">" . _("Not Enough Data") . "</span>\n"; + $items[] = "<li style=\"list-style-type: none\"><span class=\"error\">" . _("Not Enough Data") . "</span></li>\n"; } return $items; diff --git a/templates/show_upload.inc b/templates/show_upload.inc index 88d2c2c8..2fbef3e6 100644 --- a/templates/show_upload.inc +++ b/templates/show_upload.inc @@ -35,22 +35,22 @@ <table class="tabledata" cellspacing="0" cellpadding="0" border="0" width="90%" align="center">
<tr align="center">
<td>
- <input size=40 type="file" name="ul_path1" id="ul_path1" />
+ <input size="40" type="file" name="ul_path1" id="ul_path1" />
</td>
</tr>
<tr align="center">
<td>
- <input size=40 type="file" name="ul_path2" id="ul_path2" />
+ <input size="40" type="file" name="ul_path2" id="ul_path2" />
</td>
</tr>
<tr align="center">
<td>
- <input size=40 type="file" name="ul_path3" id="ul_path3" />
+ <input size="40" type="file" name="ul_path3" id="ul_path3" />
</td>
</tr>
<tr align="center">
<td>
- <input size=40 type="file" name="ul_path4" id="ul_path4" />
+ <input size="40" type="file" name="ul_path4" id="ul_path4" />
</td>
</tr>
<tr align="center">
|