git commit -m Issue

8.0.x
webchick 2012-09-30 20:46:27 -04:00
parent 4ecc679823
commit 26e0acb8d0
1 changed files with 1 additions and 1 deletions

View File

@ -3997,7 +3997,7 @@ function _system_date_formats_build() {
} }
// Get custom formats added to the database by the end user. // Get custom formats added to the database by the end user.
$result = db_query('SELECT df.dfid, df.format, df.type, df.locked, dfl.language FROM {date_formats} df LEFT JOIN {date_format_type} dft ON df.type = dft.type LEFT JOIN {date_format_locale} dfl ON df.format = dfl.format AND df.type = dfl.type ORDER BY df.type, df.format'); $result = db_query('SELECT df.dfid, df.format, df.type, df.locked, dfl.language FROM {date_formats} df LEFT JOIN {date_format_locale} dfl ON df.format = dfl.format AND df.type = dfl.type ORDER BY df.type, df.format');
foreach ($result as $record) { foreach ($result as $record) {
// If this date type isn't set, initialise the array. // If this date type isn't set, initialise the array.
if (!isset($date_formats[$record->type])) { if (!isset($date_formats[$record->type])) {