From a0701d581dfa39113c1af68637118d99d5a0822a Mon Sep 17 00:00:00 2001 From: jhunkeler Date: Wed, 27 Jan 2010 02:52:17 +0000 Subject: commit just prior to some pure insanity. implementing theme system git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2@463 c5b2fb0a-d05d-0410-98c8-828840a80ff6 --- includes/classes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/classes.php') diff --git a/includes/classes.php b/includes/classes.php index 33794c2..0042c95 100644 --- a/includes/classes.php +++ b/includes/classes.php @@ -68,13 +68,13 @@ class BayonetForm echo "\n"; } - function textField($extern_name, $value = NULL, $isPassword = false) + function textField($extern_name, $value = NULL, $isPassword = false, $size = NULL, $max = NULL) { $type = 'text'; if($isPassword) $type = 'password'; $value = filter_var($value, FILTER_SANITIZE_STRING); - echo "\n"; + echo "\n"; } function radioButton($extern_name, $value, $isChecked = false) -- cgit