Changeset 12483

Show
Ignore:
Timestamp:
10/18/11 15:54:54 (19 months ago)
Author:
mistic100
Message:

add render_tag_name event

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • extensions/typetags/admin.php

    r10987 r12483  
    227227while ($row = pwg_db_fetch_assoc($all_tags)) { 
    228228  if ($row['typetagname'] == null) $row['typetagid'] = 'NULL'; 
     229  $row['tagname'] = trigger_event('render_tag_name', $row['tagname']); 
    229230  $template->append('typetags_association', $row); 
    230231}