소스 검색

Fix wrong TYPE_POST_REMOVE event name, fixes #2906

Andrej Hudec 10 년 전
부모
커밋
52815f404c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Event/PersistenceEvent.php

+ 1 - 1
Event/PersistenceEvent.php

@@ -32,7 +32,7 @@ class PersistenceEvent extends Event
     const TYPE_PRE_PERSIST  = 'pre_persist';
     const TYPE_POST_PERSIST = 'post_persist';
     const TYPE_PRE_REMOVE   = 'pre_remove';
-    const TYPE_POST_REMOVE  = 'post_update';
+    const TYPE_POST_REMOVE  = 'post_remove';
 
     protected $admin;