summaryrefslogtreecommitdiff
path: root/modules/statistics.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-16 17:09:23 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-16 17:09:23 +0000
commitef8735614fdc50ad1512027dcb1ea84f67becb3a (patch)
treeb7878147b6973cc71bc348e7b4565da6b4ad661c /modules/statistics.module
parente5f2c1ef0e6745017acf5e57c9e2913b21d6f2e4 (diff)
downloadbrdo-ef8735614fdc50ad1512027dcb1ea84f67becb3a.tar.gz
brdo-ef8735614fdc50ad1512027dcb1ea84f67becb3a.tar.bz2
- Improvements: XHTML-ifications. Patch by GmbH. See feature #1813.
Diffstat (limited to 'modules/statistics.module')
-rw-r--r--modules/statistics.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/statistics.module b/modules/statistics.module
index 0ca5b51fa..ad0180a6a 100644
--- a/modules/statistics.module
+++ b/modules/statistics.module
@@ -752,7 +752,7 @@ function statistics_page_user($uid = 0, $date = 0, $all = 0) {
}
if ($displaycount = variable_get("statistics_userpage_day_cnt", 10)) {
- $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" width=\"100%\">";
+ $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" style=\"width: 100%;\">";
$output .= statistics_summary("daycount", $displaycount);
$output .= "</table>";
@@ -761,7 +761,7 @@ function statistics_page_user($uid = 0, $date = 0, $all = 0) {
if ($displaycount = variable_get("statistics_userpage_all_cnt", "10")) {
- $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" width=\"100%\">";
+ $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" style=\"width: 100%;\">";
$output .= statistics_summary("totalcount", $displaycount);
$output .= "</table>";
@@ -769,7 +769,7 @@ function statistics_page_user($uid = 0, $date = 0, $all = 0) {
}
if ($displaycount = variable_get("statistics_userpage_last_cnt", "10")) {
- $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" width=\"100%\">";
+ $output = "<table border=\"0\" cellpadding=\"4\" cellspacing=\"4\" style=\"width: 100%;\">";
$output .= statistics_summary("timestamp", $displaycount);
$output .= "</table>";