diff options
author | hitlerrip <git@hitler.rip> | 2025-08-02 23:04:15 +0200 |
---|---|---|
committer | hitlerrip <git@hitler.rip> | 2025-08-02 23:04:15 +0200 |
commit | a81f86a8801a959457116787e74e5a5b6280217c (patch) | |
tree | c961712ff9ae361a73519c069415c4c46bf814aa /backend/index.php | |
parent | d2ec4bfa15e6109d8a282262b5584b8483a00bf9 (diff) | |
download | hitler-clicker-a81f86a8801a959457116787e74e5a5b6280217c.tar.gz hitler-clicker-a81f86a8801a959457116787e74e5a5b6280217c.tar.bz2 hitler-clicker-a81f86a8801a959457116787e74e5a5b6280217c.zip |
fix typo
Diffstat (limited to 'backend/index.php')
-rw-r--r-- | backend/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backend/index.php b/backend/index.php index 5c21f34..76d9731 100644 --- a/backend/index.php +++ b/backend/index.php @@ -44,9 +44,9 @@ foreach($found as $row): $i++; if ($i === sizeof($found)) { - echo " \"$row[team]\": { \"clicks\": \"$row[clicks]\", \"fromanon:\": \"$row[fromanon]\" }"; + echo " \"$row[team]\": { \"clicks\": \"$row[clicks]\", \"fromanon\": \"$row[fromanon]\" }"; } else { - echo " \"$row[team]\": { \"clicks\": \"$row[clicks]\", \"fromanon:\": \"$row[fromanon]\" }, "; + echo " \"$row[team]\": { \"clicks\": \"$row[clicks]\", \"fromanon\": \"$row[fromanon]\" }, "; }; endforeach; |