From 5767f4f2a3d2fcbb0f2b0f81fa7aeadce44be3a7 Mon Sep 17 00:00:00 2001 From: skeeter Date: Sat, 10 Nov 2001 20:51:30 +0000 Subject: [PATCH] Small changes that use is_?????() instead of gettype(). --- admin/inc/class.html.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/inc/class.html.inc.php b/admin/inc/class.html.inc.php index 33e2bfb7fb..103d6a5aa2 100755 --- a/admin/inc/class.html.inc.php +++ b/admin/inc/class.html.inc.php @@ -81,7 +81,7 @@ // First Get the layout arrays... $layout = $head['#layout']; - if (gettype($layout) != 'array') + if (!is_array($layout)) { $layout = $this->arr_keys($cols); } @@ -209,7 +209,7 @@ { $html = ''; $comma = ' '; - if (gettype($parmlist) != 'array') + if (!is_array($parmlist)) { return ''; }