Navigation Menu

Skip to content

Commit

Permalink
Adding german error string to dbo_mssql::lastError() Fixes #6352
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8180 3807eeeb-6ff5-0310-8944-8be069107fe0
  • Loading branch information
markstory committed May 29, 2009
1 parent a6017e6 commit f498ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/libs/model/datasources/dbo/dbo_mssql.php
Expand Up @@ -384,7 +384,7 @@ function lastError() {
$error = mssql_get_last_message($this->connection);

if ($error) {
if (!preg_match('/contexto de la base de datos a|contesto di database|changed database/i', $error)) {
if (!preg_match('/contexto de la base de datos a|contesto di database|changed database|datenbankkontext/i', $error)) {
return $error;
}
}
Expand Down

0 comments on commit f498ba0

Please sign in to comment.