To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Show
Ignore:
Timestamp:
11/02/11 11:14:37 (19 months ago)
Author:
kerry
Message:

there was a bug with the event admin popular tags listing. It used the wrong method to retrieve the tags, getting ALL of them instead of just the Popular tags.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/apostropheBlogPlugin/branches/1.5/modules/aEventAdmin/lib/BaseaEventAdminActions.class.php

    r4097 r4277  
    160160                $this->existingTags = $this->form->getObject()->getTags(); 
    161161                // Retrieve the 10 most popular tags for the inlineTaggableWidget 
    162     $this->popularTags = TagTable::getAllTagNameWithCount(null, array('model' => 'aEvent', 'sort_by_popularity' => true), false, 10); 
     162    $this->popularTags = TagTable::getPopulars(null, array('model' => 'aEvent', 'sort_by_popularity' => true), false, 10); 
     163 
    163164  } 
    164165