diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-07-19 07:04:26 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-07-19 07:04:26 +0000 |
commit | 751a6979efe05d7d065cb7b3042ffcdb60182c8a (patch) | |
tree | 88c302a7be556d874c0424983e8ec4218c754471 /modules | |
parent | 3c00cefd2e204ce1568caca1358a5323555bfede (diff) | |
download | brdo-751a6979efe05d7d065cb7b3042ffcdb60182c8a.tar.gz brdo-751a6979efe05d7d065cb7b3042ffcdb60182c8a.tar.bz2 |
#73683 by keve, properly initialize an array.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/filter/filter.module | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/filter/filter.module b/modules/filter/filter.module index 9f3f15db8..498e3dfcc 100644 --- a/modules/filter/filter.module +++ b/modules/filter/filter.module @@ -624,6 +624,7 @@ function filter_formats() { $query = 'SELECT * FROM {filter_formats}'; // Build query for selecting the format(s) based on the user's roles. + $args = array(); if (!$all) { $where = array(); foreach ($user->roles as $rid => $role) { |