diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/application.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/application.php b/core/application.php index 7ba66fe..a575f9d 100644 --- a/core/application.php +++ b/core/application.php @@ -74,7 +74,7 @@ try { $Language = Application::getLanguage(); $Database = Application::getDatabase(); - $Database->setAttribute($Database::ATTR_DEFAULT_FETCH_MODE, $Database::FETCH_OBJ); + $Database->setAttribute($Database::ATTR_DEFAULT_FETCH_MODE, $Database::FETCH_ASSOC); $Database->setAttribute($Database::ATTR_ERRMODE, $Database::ERRMODE_EXCEPTION); } @@ -104,7 +104,7 @@ if(Application::get('CORE.SEND_304') === TRUE AND !defined('ADMINISTRATION')) { #=========================================================================== # Define HTTP ETag header identifier #=========================================================================== - $HTTP_ETAG_IDENTIFIER = md5(implode($Statement->fetch(PDO::FETCH_ASSOC))); + $HTTP_ETAG_IDENTIFIER = md5(implode($Statement->fetch())); #=========================================================================== # Send ETag header within the HTTP response |