From 24201dc1f48770d20ffaa44fabe1ef571f979da9 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sat, 18 Jun 2011 07:28:43 -0400
Subject: [PATCH] - Fix set_row_attribs() for backward compat.
---
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