diff options
author | bnewbold <bnewbold@manus.(none)> | 2007-02-22 00:21:23 -0800 |
---|---|---|
committer | bnewbold <bnewbold@manus.(none)> | 2007-02-22 00:21:23 -0800 |
commit | 52a791b0dcd40f1b790c523b8c65086083206a6d (patch) | |
tree | e711d24bb89dd4d150448baf11ad3e65c03ebaff /bn_django/templates | |
parent | fde421c01eb374054d2e442808587810fdfed5ce (diff) | |
download | bnewnet-52a791b0dcd40f1b790c523b8c65086083206a6d.tar.gz bnewnet-52a791b0dcd40f1b790c523b8c65086083206a6d.zip |
fixed xhtml problem (onFocus vs onfocus)
Diffstat (limited to 'bn_django/templates')
-rw-r--r-- | bn_django/templates/base.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bn_django/templates/base.html b/bn_django/templates/base.html index 819d556..0df7a36 100644 --- a/bn_django/templates/base.html +++ b/bn_django/templates/base.html @@ -24,7 +24,9 @@ <div class="right_stuff"> <form name="search"> <br/> -<input class="search_box" type="text" size="21" value=" search!" name="search_text" id="search_text" onFocus="if (this.value == this.defaultValue) this.value=''; return;" /> +<input class="search_box" type="text" size="21" value=" search!" + name="search_text" id="search_text" + onfocus="if (this.value == this.defaultValue) this.value=''; return;" /> <br /> style: <a onclick="swapstyle('font');return;" href="#" id="style_font" class="subtle"> |