From 7e50b4361c7094bb33fced2ef96b95acd4d87640 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Fri, 21 Oct 2011 13:29:21 -0400
Subject: [PATCH] - Small code improvement

---
 program/include/html.php |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/program/include/html.php b/program/include/html.php
index d097278..27eeebb 100644
--- a/program/include/html.php
+++ b/program/include/html.php
@@ -675,8 +675,7 @@
         if ($index === null)
             $index = $this->rowindex;
 
-        if ($this->rows[$index])
-            $this->rows[$index]->attrib = $attr;
+        $this->rows[$index]->attrib = $attr;
     }
 
     /**

--
Gitblit v1.9.1