Changeset 650
- Timestamp:
- 05/14/07 01:46:17 (6 years ago)
- Location:
- coldbox/trunk/src/system
- Files:
-
- 1 added
- 2 modified
-
eventhandler.cfc (modified) (1 diff)
-
frameworkSupertype.cfc (added)
-
plugin.cfc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coldbox/trunk/src/system/eventhandler.cfc
r635 r650 19 19 hint="This is the event handler base cfc." 20 20 output="false" 21 extends=" coldbox.system.util.actioncontroller">21 extends="frameworkSupertype"> 22 22 23 23 <!------------------------------------------- CONSTRUCTOR -------------------------------------------> -
coldbox/trunk/src/system/plugin.cfc
r635 r650 14 14 <cfcomponent name="plugin" 15 15 hint="This is the plugin base cfc." 16 extends=" coldbox.system.util.actioncontroller"16 extends="frameworkSupertype" 17 17 output="false"> 18 18 … … 35 35 36 36 <!------------------------------------------- INSTANCE MUTATORS AND ACCESSORS -------------------------------------------> 37 37 38 38 <!--- ************************************************************* ---> 39 39
