[pLog-svn] Several smaller glitches

Christoph Feddersen feddersen at herr-der-ringe-film.de
Thu Feb 2 18:37:56 GMT 2006


Hi all,
had some time today to dig a bit more in the class structure. While
browsing the files, I noticed several smaller things you might be
interested in:


1.)
class\action\admin\admindeleteblogaction.class.php on line 53

        function disableBlog( $blogIn

Throws a parse error and can be deleted.



2.)
I think this file shouldn't be there and can be deleted:
\class\action\admin\adminglobalarticlecategorieslistview.class.php

As you can see, it's a "View" class and seems to be an older version of

\class\view\admin\adminglobalarticlecategorieslistview.class.php


3.)
class/action/admin/adminGlobalarticlecategoryaction.class.php on line 10
Small typo in include statement:
Open:

include_once(
PLOG_CLASS_PATH."class/view/admin/adminGlobalarticlecategorieslistview.class.php"
);

filename should be all lowercase:
include_once(
PLOG_CLASS_PATH."class/view/admin/adminglobalarticlecategorieslistview.class.php"
);

4.)
\class\action\admin\adminhelpaction.class.php on line 5

this include_once() statement points to a non-existing file:
/class/view/admin/adminhelpview.class.php

5.)
Orphan file (identical to configfilestorage.class.php):
\class\config\configfilestorage.class.php.new

6.)
Is \class\xml\XPath.class.php still used?
Just noticed that line 4610 isn't PHP5 compatible (reassigned to $this
is not allowed), but I couldn't find an invocation of the class.

Christoph


More information about the pLog-svn mailing list