diff options
author | Anika Henke <a.c.henke@arcor.de> | 2008-03-13 02:25:47 +0100 |
---|---|---|
committer | Anika Henke <a.c.henke@arcor.de> | 2008-03-13 02:25:47 +0100 |
commit | 2404d0ed821f0918261a23e4b665ae312f88bd45 (patch) | |
tree | 0ea1f36a74bcb0adf5fb64e09a30ad48804e04a8 /inc | |
parent | 0ceb549d0a022569a0e99a34e362f15d4703fb9d (diff) | |
download | rpg-2404d0ed821f0918261a23e4b665ae312f88bd45.tar.gz rpg-2404d0ed821f0918261a23e4b665ae312f88bd45.tar.bz2 |
stricter xhtml for revert, acl and sectok forms
darcs-hash:20080313012547-d5083-8d8f3c2ad62f08b9ed73827987d3b8be17f6b34b.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/common.php b/inc/common.php index 127276475..f86d8e2fb 100644 --- a/inc/common.php +++ b/inc/common.php @@ -82,7 +82,7 @@ function checkSecurityToken($token=null){ * @author Andreas Gohr <andi@splitbrain.org> */ function formSecurityToken($print=true){ - $ret = '<input type="hidden" name="sectok" value="'.getSecurityToken().'" />'."\n"; + $ret = '<div class="no"><input type="hidden" name="sectok" value="'.getSecurityToken().'" /></div>'."\n"; if($print){ echo $ret; }else{ |