summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-06-18 11:28:43 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-06-18 11:28:43 +0000
commitd83b9158748c1ff72d4bfd7b9c76b215a21d9c5b (patch)
tree9f7925e58102d851a1897861ea7632a2ea89c1c8
parent6aeef82f8dc2170cc9a23faec595a110557f751b (diff)
- Fix set_row_attribs() for backward compat.
git-svn-id: https://svn.roundcube.net/trunk@4867 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/include/html.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/roundcubemail/program/include/html.php b/roundcubemail/program/include/html.php
index d09727898..27eeebb2d 100644
--- a/roundcubemail/program/include/html.php
+++ b/roundcubemail/program/include/html.php
@@ -675,8 +675,7 @@ class html_table extends html
if ($index === null)
$index = $this->rowindex;
- if ($this->rows[$index])
- $this->rows[$index]->attrib = $attr;
+ $this->rows[$index]->attrib = $attr;
}
/**