From e55a7c08483ad73d6e575782dcea05e9b2acfa6b Mon Sep 17 00:00:00 2001 From: Massimo Di Pierro Date: Mon, 26 Dec 2011 13:51:01 -0600 Subject: [PATCH] http://groups.google.com/group/web2py/browse_thread/thread/58435ce10fd71c8d/, thanks Alexandre --- VERSION | 2 +- gluon/sqlhtml.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 78b8dfaf..f7c18488 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 1.99.4 (2011-12-26 10:30:50) stable +Version 1.99.4 (2011-12-26 13:50:37) stable diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index 2d31e44b..5f02ce86 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -1366,7 +1366,7 @@ class SQLFORM(FORM): """) return CAT( INPUT( - _value="query",_type="button",_id="w2p_query_trigger", + _value=T("Query"),_type="button",_id="w2p_query_trigger", _onclick="jQuery('#w2p_query_fields').val('');jQuery('#w2p_query_panel').slideToggle();"), DIV(_id="w2p_query_panel", _style='position:absolute;z-index:1000', @@ -1924,7 +1924,7 @@ class SQLFORM(FORM): breadcrumbs += [A(T(db[referee]._plural), _class=trap_class(), _href=URL(args=request.args[:nargs])), - ' ', + ' > ', A(name,_class=trap_class(), _href=URL(args=request.args[:nargs]+[ 'view',referee,id],user_signature=True)),