summaryrefslogtreecommitdiffstats
path: root/frontends/php/graphs.php
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/php/graphs.php')
-rw-r--r--frontends/php/graphs.php13
1 files changed, 6 insertions, 7 deletions
diff --git a/frontends/php/graphs.php b/frontends/php/graphs.php
index 460c998a..0b00730b 100644
--- a/frontends/php/graphs.php
+++ b/frontends/php/graphs.php
@@ -43,16 +43,15 @@
<?
show_table_header("GRAPHS");
- echo "<TABLE BORDER=0 COLS=4 WIDTH=\"100%\" BGCOLOR=\"#CCCCCC\" cellspacing=1 cellpadding=3>";
- echo "<TD WIDTH=\"5%\" NOSAVE><B>Id</B></TD>";
- echo "<TD WIDTH=\"10%\" NOSAVE><B>Name</B></TD>";
- echo "<TD WIDTH=\"10%\" NOSAVE><B>Width</B></TD>";
- echo "<TD WIDTH=\"10%\" NOSAVE><B>Height</B></TD>";
- echo "<TD WIDTH=\"10%\" NOSAVE><B>Actions</B></TD>";
+ echo "<TABLE BORDER=0 COLS=4 WIDTH=100% BGCOLOR=\"#CCCCCC\" cellspacing=1 cellpadding=3>";
+ echo "<TD WIDTH=5% NOSAVE><B>Id</B></TD>";
+ echo "<TD WIDTH=10% NOSAVE><B>Name</B></TD>";
+ echo "<TD WIDTH=10% NOSAVE><B>Width</B></TD>";
+ echo "<TD WIDTH=10% NOSAVE><B>Height</B></TD>";
+ echo "<TD WIDTH=10% NOSAVE><B>Actions</B></TD>";
echo "</TR>";
$result=DBselect("select g.graphid,g.name,g.width,g.height from graphs g order by g.name");
- echo "<CENTER>";
$col=0;
while($row=DBfetch($result))
{