Update of /cvsroot/phpcms-plugins/admin4phpCMS/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2565/include
Modified Files:
class.eventhandler.php class.actionhandler.php
Log Message:
step 1 is taken
Index: class.actionhandler.php
===================================================================
RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/include/class.actionhandler.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- class.actionhandler.php 24 Jul 2004 08:58:24 -0000 1.6
+++ class.actionhandler.php 25 Aug 2004 21:16:49 -0000 1.7
@@ -30,6 +30,9 @@
/*
* $Log$
+* Revision 1.7 2004/08/25 21:16:49 mjahn
+* step 1 is taken
+*
* Revision 1.6 2004/07/24 08:58:24 mjahn
* changed some things
*
@@ -109,9 +112,6 @@
reset ($this->_actions[$actionname]);
foreach ($this->_actions[$actionname] as $actionclass => $actionmethod ) {
- if (DEBUG) {
- echo '<p>Action: '.$actionclass.'::'.$actionmethod.'</p>';
- }
$object =& $this->__getInstance($actionclass);
$object->{$actionmethod}($actiondata);
}
Index: class.eventhandler.php
===================================================================
RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/include/class.eventhandler.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- class.eventhandler.php 24 Jul 2004 08:58:24 -0000 1.7
+++ class.eventhandler.php 25 Aug 2004 21:16:49 -0000 1.8
@@ -30,6 +30,9 @@
/*
* $Log$
+* Revision 1.8 2004/08/25 21:16:49 mjahn
+* step 1 is taken
+*
* Revision 1.7 2004/07/24 08:58:24 mjahn
* changed some things
*
@@ -105,9 +108,6 @@
}
$action = $this->_events[$eventname];
- if (DEBUG) {
- echo '<p>Event: '.$eventname.'-> '.$action.'</p>';
- }
return $this->_actionHandler->action($action, $actiondata);
}
|