diff options
author | mkanat%kerio.com <> | 2005-02-18 23:48:24 +0000 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-02-18 23:48:24 +0000 |
commit | c720bf60573fdb92874056ffd07c3d6055df22af (patch) | |
tree | b913b9a62f5f25b56decf91a9dd1351cac11bcf6 /template/en/default | |
parent | 9d9d882b15d87d005e2ea33302777705dbca9618 (diff) | |
download | bugs-c720bf60573fdb92874056ffd07c3d6055df22af.tar bugs-c720bf60573fdb92874056ffd07c3d6055df22af.tar.gz bugs-c720bf60573fdb92874056ffd07c3d6055df22af.tar.bz2 bugs-c720bf60573fdb92874056ffd07c3d6055df22af.tar.xz bugs-c720bf60573fdb92874056ffd07c3d6055df22af.zip |
Bug 282570: Missing errors for DB compatibility layer
Patch By Tomas Kopal <Tomas.Kopal@altap.cz> r=mkanat, a=justdave
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index 5026d8314..3a2a9606e 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -235,6 +235,18 @@ I could not figure out what you wanted to do. [% END %] + [% ELSIF error == "nested_transaction" %] + Attempted to start a new transaction without finishing previous one first. + + [% ELSIF error == "not_in_transaction" %] + Attempted to end transaction without starting one first. + + [% ELSIF error == "already_locked" %] + Attempted to lock a table without releasing previous lock first. + + [% ELSIF error == "no_matching_lock" %] + Attempted to unlock tables without locking them first. + [% ELSE %] [% title = "Internal error" %] An internal error has occured, but [% terms.Bugzilla %] doesn't know |