From 972f05b58e2b9850da154a0905a3caf0fa872806 Mon Sep 17 00:00:00 2001 From: dave Date: Sun, 28 Jan 2007 07:56:52 +0000 Subject: [PATCH] - Remove PHP5-isms --- judge.class.php | 4 ++-- tableeditor.class.php | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/judge.class.php b/judge.class.php index fd01f5e..7933cd5 100644 --- a/judge.class.php +++ b/judge.class.php @@ -53,7 +53,7 @@ function person($person_id=NULL) class judge extends person /*implements TableEditorInterface*/ { /* Static members for the table editor */ -static function tableEditorSetup($editor) +function tableEditorSetup($editor) { global $judges_fields, $judges_table_fields; global $config; @@ -137,7 +137,7 @@ static function tableEditorSetup($editor) } /* STATIC */ -static function tableEditorGetList($editor) +function tableEditorGetList($editor) { //return $editor->defaultGetList(); global $config; diff --git a/tableeditor.class.php b/tableeditor.class.php index 97c6557..dd0658f 100644 --- a/tableeditor.class.php +++ b/tableeditor.class.php @@ -27,6 +27,7 @@ // - Fix INSERTING with a hidden field with value of NOW() +/* interface TableEditorInterface { function tableEditorSetup($editor); function tableEditorLoad(); @@ -34,7 +35,7 @@ interface TableEditorInterface { function tableEditorDelete(); function tableEditorGetList($editor); }; - +*/