Minor internal fixes

This commit is contained in:
Deon George
2014-10-04 00:35:26 +10:00
parent a7ed6672e1
commit f679bf9c06
9 changed files with 44 additions and 28 deletions

View File

@@ -80,7 +80,7 @@ abstract class lnApp_HTMLRender {
public function render_all() {
$output = '';
for ($x=0; $x<static::$_c; $x++)
for ($x=0; $x<=static::$_c; $x++)
if (isset(static::$_data[$x])) {
$output .= (string)$this->record($x);
unset(static::$_data[$x]);