diff options
author | alecpl <alec@alec.pl> | 2010-10-27 12:45:51 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-10-27 12:45:51 +0000 |
commit | 022bcd11320398b6652eacc5c264a87adc16af84 (patch) | |
tree | 07b79851e1ff9cfcff7a57dcef4b9f4a80a2ae96 /program | |
parent | f48a94cb50ec64ebb70f9ccb048b876208447af3 (diff) |
- When contacts search returns no rows display message of type 'notice' instead of 'warning'
Diffstat (limited to 'program')
-rw-r--r-- | program/steps/addressbook/search.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/steps/addressbook/search.inc b/program/steps/addressbook/search.inc index b62de4906..7c52ef608 100644 --- a/program/steps/addressbook/search.inc +++ b/program/steps/addressbook/search.inc @@ -38,7 +38,7 @@ if ($result->count > 0) } else { - $OUTPUT->show_message('nocontactsfound', 'warning'); + $OUTPUT->show_message('nocontactsfound', 'notice'); $search_request = null; } |