diff options
-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">
|