diff options
author | lpsolit%gmail.com <> | 2005-07-08 06:15:20 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-07-08 06:15:20 +0200 |
commit | 230976efc0233c7157f6b6a3919e5eb885dbe4a7 (patch) | |
tree | 2cadf7119883a3d6293daba9c228791689e17186 /template/en/default | |
parent | 6e29c7cd06afac55962dac20421bddbf17954906 (diff) | |
download | bugzilla-230976efc0233c7157f6b6a3919e5eb885dbe4a7.tar.gz bugzilla-230976efc0233c7157f6b6a3919e5eb885dbe4a7.tar.xz |
Bug 299212: "already locked" errors should be more informative - Patch by Frédéric Buclin <LpSolit@gmail.com> r=glob a=justdave
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index d54163bd8..fd3f8fb20 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -258,7 +258,9 @@ Attempted to end transaction without starting one first. [% ELSIF error == "already_locked" %] - Attempted to lock a table without releasing previous lock first. + Attempted to lock a table without releasing previous lock first: + <p>Tables already locked:<br>[% current FILTER html %] + <p>Tables requesting locking:<br>[% new FILTER html %] [% ELSIF error == "no_matching_lock" %] Attempted to unlock tables without locking them first. |