Commit 15cb336677cae03870ac0fc34fb2df93c71bb59e
1 parent
2a311274
testing
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/lib/models/basket.php
| ... | ... | @@ -315,12 +315,12 @@ class basket extends \db |
| 315 | 315 | public function getAbandonedUsers() { |
| 316 | 316 | |
| 317 | 317 | return $this->get( |
| 318 | - ' | |
| 318 | + " | |
| 319 | 319 | SELECT * |
| 320 | 320 | FROM public.basket |
| 321 | 321 | WHERE |
| 322 | - last_mod < CURRENT_TIMESTAMP - INTERVAL "1 day" | |
| 323 | - ', | |
| 322 | + last_mod < CURRENT_TIMESTAMP - INTERVAL '1 day' | |
| 323 | + ", | |
| 324 | 324 | [ |
| 325 | 325 | |
| 326 | 326 | ] | ... | ... |