Ignore:
Timestamp:
Feb 13, 2014, 11:21:12 PM (10 years ago)
Author:
rvelices
Message:

more query2array

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/functions_category.inc.php

    r26461 r27369  
    206206    WHERE id IN ('.$cat['uppercats'].')
    207207  ;';
    208     $names = hash_from_query($query, 'id');
     208    $names = query2array($query, 'id');
    209209
    210210    // category names must be in the same order than uppercats list
     
    303303                                    $fullname = true)
    304304{
    305   $categories = array_from_query($query);
     305  $categories = query2array($query);
    306306  usort($categories, 'global_rank_compare');
    307307  display_select_categories($categories, $selecteds, $blockname, $fullname);
     
    363363  WHERE permalink IN ('.$in.')
    364364;';
    365   $perma_hash = hash_from_query($query, 'permalink');
     365  $perma_hash = query2array($query, 'permalink');
    366366
    367367  if ( empty($perma_hash) )
Note: See TracChangeset for help on using the changeset viewer.