openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit b440f128a8c3610ab8bff92fcf879720b5b054ff
parent 8136fb86292570f00f4a6cabd811ea5366c867ca
Author: dankert <devnull@localhost>
Date:   Wed, 29 Dec 2004 21:18:20 +0100

Konstruktor geaendert

Diffstat:
objectClasses/Project.class.php | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/objectClasses/Project.class.php b/objectClasses/Project.class.php @@ -20,7 +20,10 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ -// Revision 1.7 2004-12-19 15:23:56 dankert +// Revision 1.8 2004-12-29 20:18:20 dankert +// Konstruktor geaendert +// +// Revision 1.7 2004/12/19 15:23:56 dankert // Anpassung Session-Funktionen // // Revision 1.6 2004/12/15 23:16:58 dankert @@ -60,9 +63,8 @@ class Project // Konstruktor function Project( $projectid='' ) { - if ( intval($projectid)!=0 ) + if ( intval($projectid) != 0 ) $this->projectid = $projectid; -// else die('need projectid in constructor Project()'); }