1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-06 06:38:00 +02:00

Fixed some XHTML validation errors

This commit is contained in:
bugrain
2009-05-10 10:50:28 +00:00
parent 526758cb7d
commit 8df9b45984

View File

@@ -9,9 +9,9 @@
* Tagwords Shortcodes * Tagwords Shortcodes
* *
* $Source: /cvs_backup/e107_0.8/e107_plugins/tagwords/tagwords_shortcodes.php,v $ * $Source: /cvs_backup/e107_0.8/e107_plugins/tagwords/tagwords_shortcodes.php,v $
* $Revision: 1.2 $ * $Revision: 1.3 $
* $Date: 2009-01-17 22:46:37 $ * $Date: 2009-05-10 10:50:28 $
* $Author: lisa_ $ * $Author: bugrain $
* *
*/ */
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
@@ -59,9 +59,11 @@ class tagwords_shortcodes
$id = 'tagwords_searchform_menu'; $id = 'tagwords_searchform_menu';
return " return "
<form id='".$id."' name='".$id."' method='get' action='".e_PLUGIN."tagwords/tagwords.php'> <form id='".$id."' method='get' action='".e_PLUGIN."tagwords/tagwords.php'>
<div>
<input class='tbox' style='width:100px;' type='text' name='q' size='35' value='".$value."' maxlength='50' /> <input class='tbox' style='width:100px;' type='text' name='q' size='35' value='".$value."' maxlength='50' />
<input class='button' type='submit' name='se' value='".LAN_TAG_SEARCH_2."' /> <input class='button' type='submit' name='se' value='".LAN_TAG_SEARCH_2."' />
</div>
</form>"; </form>";
break; break;
@@ -72,9 +74,11 @@ class tagwords_shortcodes
} }
$id = 'tagwords_searchform'; $id = 'tagwords_searchform';
return " return "
<form id='".$id."' name='".$id."' method='get' action='".e_PLUGIN."tagwords/tagwords.php'> <form id='".$id."' method='get' action='".e_PLUGIN."tagwords/tagwords.php'>
<div>
<input class='tbox' style='width:100px;' type='text' name='q' size='35' value='".$value."' maxlength='50' /> <input class='tbox' style='width:100px;' type='text' name='q' size='35' value='".$value."' maxlength='50' />
<input class='button' type='submit' name='s' value='".LAN_TAG_SEARCH_2."' /> <input class='button' type='submit' name='s' value='".LAN_TAG_SEARCH_2."' />
</div>
</form>"; </form>";
break; break;