tags(image_id,tag) split into image_tags(image_id,tag_id) and tags(id,tag,count)

git-svn-id: file:///home/shish/svn/shimmie2/trunk@227 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
shish
2007-07-05 21:30:37 +00:00
parent 9d6becdb6c
commit b6809c3b0a
11 changed files with 75 additions and 34 deletions

View File

@ -12,7 +12,7 @@ class AddAliasEvent extends Event {
class AliasEditor extends Extension {
var $theme;
// event handler {{{
public function receive_event($event) {
if(is_null($this->theme)) $this->theme = get_theme_object("alias_editor", "AliasEditorTheme");
@ -65,7 +65,6 @@ class AliasEditor extends Extension {
}
}
}
// }}}
}
add_event_listener(new AliasEditor());
?>