From 37fa9241d34445070ef2010a61a76d7f501cc357 Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 20 May 2013 04:50:56 -0700 Subject: [PATCH] Column count fix for 'no records found' message. --- e107_handlers/form_handler.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/e107_handlers/form_handler.php b/e107_handlers/form_handler.php index 5eab87c73..67150fe8e 100644 --- a/e107_handlers/form_handler.php +++ b/e107_handlers/form_handler.php @@ -3194,10 +3194,10 @@ class e_form if(!$tree) { $text .= " - - ".LAN_NO_RECORDS." - - "; + + "; + + $text .= "
".LAN_NO_RECORDS."
"; // not prone to column-count issues. } else { @@ -3208,13 +3208,13 @@ class e_form $text .= $this->renderTableRow($fields, $current_fields, $model->getData(), $options['pid']); } e107::setRegistry('core/adminUI/currentListModel', null); + + $text .= " + "; } - $text .= " - - - ".vartrue($options['table_post'])." - "; + + $text .= vartrue($options['table_post']); if($tree && $amount)