diff options
Diffstat (limited to 'phpBB/includes/ucp/ucp_pm_options.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_options.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_options.php b/phpBB/includes/ucp/ucp_pm_options.php index 3362b5d9b4..c9e911b5f4 100644 --- a/phpBB/includes/ucp/ucp_pm_options.php +++ b/phpBB/includes/ucp/ucp_pm_options.php @@ -741,7 +741,8 @@ function show_defined_rules($user_id, $check_lang, $rule_lang, $action_lang, $fo $sql = 'SELECT * FROM ' . PRIVMSGS_RULES_TABLE . ' - WHERE user_id = ' . $user_id; + WHERE user_id = ' . $user_id . ' + ORDER BY rule_id ASC'; $result = $db->sql_query($sql); $count = 0; |