Changeset 27369 for trunk/include/functions_notification.inc.php
- Timestamp:
- Feb 13, 2014, 11:21:12 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/functions_notification.inc.php
r26461 r27369 218 218 } 219 219 $query = 'SELECT DISTINCT '.$field_id.' '.$query.';'; 220 $infos = array_from_query($query);220 $infos = query2array($query); 221 221 return $infos; 222 222 break; … … 457 457 LIMIT '.$max_dates.' 458 458 ;'; 459 $dates = array_from_query($query);459 $dates = query2array($query); 460 460 461 461 for ($i=0; $i<count($dates); $i++) … … 472 472 LIMIT '.$max_elements.' 473 473 ;'; 474 $dates[$i]['elements'] = array_from_query($query);474 $dates[$i]['elements'] = query2array($query); 475 475 } 476 476 … … 490 490 LIMIT '.$max_cats.' 491 491 ;'; 492 $dates[$i]['categories'] = array_from_query($query);492 $dates[$i]['categories'] = query2array($query); 493 493 } 494 494 }
Note: See TracChangeset
for help on using the changeset viewer.