aboutsummaryrefslogtreecommitdiff
path: root/admin.php
diff options
context:
space:
mode:
authorarf20 <aruizfernandez05@gmail.com>2024-03-18 16:02:34 +0100
committerarf20 <aruizfernandez05@gmail.com>2024-03-18 16:02:34 +0100
commit6bf04fb78dddeef3d95a4dfd7de75546055e04b0 (patch)
treead7146cd80bc79821e4bab395ba328bd8b980307 /admin.php
parent3b86297c2ddcd691842efd22426fc301f6927ffa (diff)
downloadarfnet2-cstims-6bf04fb78dddeef3d95a4dfd7de75546055e04b0.tar.gz
arfnet2-cstims-6bf04fb78dddeef3d95a4dfd7de75546055e04b0.zip
Small fixes
Diffstat (limited to 'admin.php')
-rw-r--r--admin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin.php b/admin.php
index a5012b8..24bd448 100644
--- a/admin.php
+++ b/admin.php
@@ -63,7 +63,7 @@ $services = $result->fetch_all(MYSQLI_ASSOC);
<tr><th>name</th><th>type</th><th>billing</th></tr>
<?php
foreach ($services as $service) {
- echo "<tr><td>".$service['name']."</td><td>".$service['type']."</td><td>".$service['billing']."€/mo</tr>\n";
+ echo "<tr><td>".$service['name']."</td><td>".$service['type']."</td><td>".$service['billing']."</tr>\n";
}
?>
</table>