We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 957c873 commit 496a00aCopy full SHA for 496a00a
src/DebugBar/Storage/PdoStorage.php
@@ -24,7 +24,7 @@ class PdoStorage implements StorageInterface
24
protected $sqlQueries = array(
25
'save' => "INSERT INTO %tablename% (id, data, meta_utime, meta_datetime, meta_uri, meta_ip, meta_method) VALUES (?, ?, ?, ?, ?, ?, ?)",
26
'get' => "SELECT data FROM %tablename% WHERE id = ?",
27
- 'find' => "SELECT data FROM %tablename% %where% LIMIT %limit% OFFSET %offset%",
+ 'find' => "SELECT data FROM %tablename% %where% ORDER BY meta_datetime LIMIT %limit% OFFSET %offset%",
28
'clear' => "DELETE FROM %tablename%"
29
);
30
0 commit comments