diff options
author | pmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360> | 2004-09-05 19:18:03 +0000 |
---|---|---|
committer | pmichaud <pmichaud@524c5546-5005-0410-9a3e-e25e191bd360> | 2004-09-05 19:18:03 +0000 |
commit | 956efa7aa0c64b105df19447ed4abb0b5000367a (patch) | |
tree | cd54f3a17cb5e9e190aa3cf298928777658a4984 /scripts/diag.php | |
parent | db4553dd1ef24f8faddc9c2eb46287d3b8d49a2d (diff) | |
download | pmwiki.svn-956efa7aa0c64b105df19447ed4abb0b5000367a.tar.bz2 |
Improved markup rule table display slightly.
git-svn-id: svn://pmwiki.org/trunk/pmwiki@156 524c5546-5005-0410-9a3e-e25e191bd360
Diffstat (limited to 'scripts/diag.php')
-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 f66122fd..8472f7d6 100644 --- a/scripts/diag.php +++ b/scripts/diag.php @@ -25,7 +25,7 @@ function Ruleset() { $out = array(); BuildMarkupRules(); foreach($MarkupTable as $id=>$m) - $out[] = sprintf("%-16s %-16s",$id,@$m['seq']); + $out[] = sprintf("%-16s %-16s %-16s",$id,@$m['cmd'],@$m['seq']); return implode("\n",$out); } |