From 4bfd00ff0a4a4bcab93bbb68efe493babaa10031 Mon Sep 17 00:00:00 2001 From: Mark Wiesemann Date: Fri, 26 Dec 2008 20:22:30 +0000 Subject: [PATCH] - fix EOL git-svn-id: http://svn.php.net/repository/pear/packages/HTML_QuickForm_Renderer_Tableless/trunk@271939 c90b9560-bf6c-de11-be94-00142212c4b1 --- HTML/QuickForm/Renderer/Tableless.php | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/HTML/QuickForm/Renderer/Tableless.php b/HTML/QuickForm/Renderer/Tableless.php index 844b4f9..9e7aac0 100755 --- a/HTML/QuickForm/Renderer/Tableless.php +++ b/HTML/QuickForm/Renderer/Tableless.php @@ -6,7 +6,7 @@ * PHP versions 4 and 5 * * LICENSE: - * + * * Copyright (c) 2005-2007, Mark Wiesemann * All rights reserved. * @@ -17,9 +17,9 @@ * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in the + * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * * The names of the authors may not be used to endorse or promote products + * * The names of the authors may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS @@ -50,7 +50,7 @@ /** * Replacement for the default renderer of HTML_QuickForm that uses only XHTML * and CSS but no table tags, and generates fully valid XHTML output - * + * * You need to specify a stylesheet like the one that you find in * data/stylesheet.css to make this work. * @@ -78,7 +78,7 @@ class HTML_QuickForm_Renderer_Tableless extends HTML_QuickForm_Renderer_Default * @var string * @access private */ - var $_elementTemplate = + var $_elementTemplate = "\n\t\t\t
  • error\">{error}
    {element}
  • "; /** @@ -86,7 +86,7 @@ class HTML_QuickForm_Renderer_Tableless extends HTML_QuickForm_Renderer_Default * @var string * @access private */ - var $_formTemplate = + var $_formTemplate = "\n\n\t
    \n{hidden}\t
    \n{content}\n"; /** @@ -116,7 +116,7 @@ class HTML_QuickForm_Renderer_Tableless extends HTML_QuickForm_Renderer_Default * @var string * @access private */ - var $_requiredNoteTemplate = + var $_requiredNoteTemplate = "\n\t\t\t
  • {requiredNote}
  • "; /** @@ -255,7 +255,7 @@ function renderElement(&$element, $required, $error) /** * Renders an hidden element * Called when visiting a hidden element - * + * * @param object An HTML_QuickForm_hidden object being visited * @access public * @return void @@ -350,7 +350,7 @@ function startForm(&$form) /** * Called when visiting a form, after processing all form elements * Adds required note, form attributes, validation javascript and form content. - * + * * @param object An HTML_QuickForm object being visited * @access public * @return void @@ -480,9 +480,9 @@ function _handleStopFieldsetElements($element) } // end func _handleStopFieldsetElements /** - * Sets element template + * Sets element template * - * @param string The HTML surrounding an element + * @param string The HTML surrounding an element * @param mixed (optional) Name(s) of the element to apply template * for (either single element name as string or multiple * element names as an array)