diff options
Diffstat (limited to 'frontends/php/include/classes/ctable.inc.php')
| -rw-r--r-- | frontends/php/include/classes/ctable.inc.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/frontends/php/include/classes/ctable.inc.php b/frontends/php/include/classes/ctable.inc.php index 46a18fff..69b10f71 100644 --- a/frontends/php/include/classes/ctable.inc.php +++ b/frontends/php/include/classes/ctable.inc.php @@ -110,10 +110,11 @@ parent::CTag("table","yes"); $this->SetClass($class); $this->message = $message; - $this->SetOddRowClass(); - $this->SetEvenRowClass(); - $this->SetHeader(); - $this->SetFooter(); + + $this->oddRowClass = NULL; + $this->evenRowClass = NULL; + $this->header = NULL; + $this->footer = NULL;; } function SetHeader($value=NULL,$class=NULL) { |
