diff options
author | Derek Allard <derek.allard@ellislab.com> | 2010-01-15 18:10:56 +0100 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2010-01-15 18:10:56 +0100 |
commit | d827058bb0b1d2b54f7cb0e8343885cedac43334 (patch) | |
tree | 3c09c764f3d8eb34b93db0d540bddc79566add8a /system/libraries/Table.php | |
parent | 3e9519e07af366f9bd7b48de34db689f573d37ea (diff) |
adding parse_string method
adding null values generating an empty cell in table lib
Diffstat (limited to 'system/libraries/Table.php')
-rw-r--r-- | system/libraries/Table.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Table.php b/system/libraries/Table.php index a990d406c..6d36121f2 100644 --- a/system/libraries/Table.php +++ b/system/libraries/Table.php @@ -260,7 +260,7 @@ class CI_Table { { $out .= $this->template['cell_'.$name.'start']; - if ($cell === "") + if ($cell === "" OR $cell === NULL) { $out .= $this->empty_cells; } |