diff options
author | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-04-28 07:06:44 +0000 |
---|---|---|
committer | petko <petko@524c5546-5005-0410-9a3e-e25e191bd360> | 2024-04-28 07:06:44 +0000 |
commit | 60b7c42435e46d964a83f410c9e06692a4859ce7 (patch) | |
tree | ad70e59881374ff208f54e2824e536879af9464b | |
parent | 635c0436f7e08742163dd771f5a718d60a1bc402 (diff) | |
download | pmwiki.svn-60b7c42435e46d964a83f410c9e06692a4859ce7.tar.bz2 |
RecipeCheck remove table width attribute.
git-svn-id: svn://pmwiki.org/pmwiki/trunk@4702 524c5546-5005-0410-9a3e-e25e191bd360
-rw-r--r-- | scripts/diag.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/diag.php b/scripts/diag.php index 0eece6ca..559cbc07 100644 --- a/scripts/diag.php +++ b/scripts/diag.php @@ -177,7 +177,7 @@ function ScanRecipeInfoCore($dlistfmt, $cvinfo = NULL, $imap = 'Cookbook:') { function RecipeTableCore($rinfo, $cvinfo) { $fmt = "||%-40s ||%-20s ||%-20s ||\n"; $out = "||class='recipecheck sortable filterable' " - . "cellpadding=0 cellspacing=0 width=600\n"; + . "cellpadding=0 cellspacing=0\n"; $out .= sprintf($fmt, '!Recipe', '!local', '!pmwiki.org'); foreach($rinfo as $r => $lv) { $cv = @$cvinfo[$r]; |