Files
Bubberstation/code/modules/admin
san7890 ae8d72bfd6 Fixes undeleted SQL queries in IsBanned() (#77105)
Discovered while working on #76663

## About The Pull Request

We were getting undeleted SQL stack traces with the following:
`[2023-07-25 19:27:33.832] DEBUG-SQL: Undeleted query: "SELECT 1 FROM
player WHERE ckey = :ckey" LA: NextRow LAT: 39397`

There's only one spot in the code (which happens to be the newest,
introduced in #74496 / 8fc56cbda0) where
we don't always qdel the query regardless of the path the proc takes
(and that seems to match the error per the `LA` field), so let's make
sure we always clean that up since it's a drather silly runtime. It's
also rather spontaneous, as this code is only executed when servers are
bunkered up (which Sybil presently is)

This is my first time dealing with SQL Query code, so let me know if I'm
missing something critical here.
2023-07-26 18:29:22 -05:00
..
2023-07-03 13:10:18 -04:00