From 765890618f0beed6c51f5ab77a99d78162626f0b Mon Sep 17 00:00:00 2001
From: catch <catch@35733.no-reply.drupal.org>
Date: Tue, 21 Aug 2012 17:27:53 +0200
Subject: [PATCH] Issue #1741068 by steinmb: Fixed language_list() SQL contain
 backtick and breaks PostgreSQL.

---
 core/includes/bootstrap.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc
index f460155b5dfb..4532df8446da 100644
--- a/core/includes/bootstrap.inc
+++ b/core/includes/bootstrap.inc
@@ -2719,7 +2719,7 @@ function language_list($flags = LANGUAGE_CONFIGURABLE) {
     $default = language_default();
     if (language_multilingual() || module_exists('language')) {
       // Use language module configuration if available.
-      $languages = db_query('SELECT *, 0 as `default` FROM {language} ORDER BY weight ASC, name ASC')->fetchAllAssoc('langcode', PDO::FETCH_ASSOC);
+      $languages = db_query('SELECT * FROM {language} ORDER BY weight ASC, name ASC')->fetchAllAssoc('langcode', PDO::FETCH_ASSOC);
 
       // Initialize default property so callers have an easy reference and can
       // save the same object without data loss.
-- 
GitLab