Skip to content

Commit

Permalink
CMS Issue #27267
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Jun 6, 2012
1 parent 515775c commit f782a6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libraries/joomla/log/logger/formattedtext.php
Expand Up @@ -151,12 +151,12 @@ public function addEntry(JLogEntry $entry)
$entry->date = $entry->date->format('Y-m-d', false);
}

// Decode the entry priority into an English string.
$entry->priority = $this->priorities[$entry->priority];

// Get a list of all the entry keys and make sure they are upper case.
$tmp = array_change_key_case(get_object_vars($entry), CASE_UPPER);

// Decode the entry priority into an English string.
$tmp['PRIORITY'] = $this->priorities[$entry->priority];

// Fill in field data for the line.
$line = $this->format;
foreach ($this->fields as $field)
Expand Down

0 comments on commit f782a6b

Please sign in to comment.