Skip to content

Commit

Permalink
monitoring: Fix alphabetical order of query columns in the CommentQuery
Browse files Browse the repository at this point in the history
  • Loading branch information
lippserd committed Sep 3, 2015
1 parent cf917b5 commit 620c1fa
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -25,8 +25,8 @@ class CommentQuery extends IdoQuery
'comment_is_persistent' => 'c.comment_is_persistent',
'comment_timestamp' => 'c.comment_timestamp',
'comment_type' => 'c.comment_type',
'object_type' => 'c.object_type',
'instance_name' => 'c.instance_name'
'instance_name' => 'c.instance_name',
'object_type' => 'c.object_type'
),
'hosts' => array(
'host_display_name' => 'c.host_display_name',
Expand Down

0 comments on commit 620c1fa

Please sign in to comment.