diff options
author | Jani Taskinen <jani@php.net> | 2007-08-10 13:25:03 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-08-10 13:25:03 +0000 |
commit | 6c305edc9cbbcff24182fa0b7102bcd3f5c6d273 (patch) | |
tree | 0bffdf06579ef915d00a03659eaedcc7d3fdc185 /ext/sybase/php_sybase_db.c | |
parent | e2a79ed73e60554a44e23106817b1e05f06cd393 (diff) | |
download | php-git-6c305edc9cbbcff24182fa0b7102bcd3f5c6d273.tar.gz |
No dots in error messages!
Diffstat (limited to 'ext/sybase/php_sybase_db.c')
-rw-r--r-- | ext/sybase/php_sybase_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase/php_sybase_db.c b/ext/sybase/php_sybase_db.c index 467f256acc..a70cd98d5e 100644 --- a/ext/sybase/php_sybase_db.c +++ b/ext/sybase/php_sybase_db.c @@ -928,7 +928,7 @@ PHP_FUNCTION(sybase_query) /* Check assumption that dbnextrow returns NO_MORE_ROWS */ retvalue = dbnextrow(sybase_ptr->link); if (retvalue != NO_MORE_ROWS) { - php_error_docref(NULL TSRMLS_CC, E_WARNING,"Expected dbnextrow() to return NO_MORE_ROWS."); + php_error_docref(NULL TSRMLS_CC, E_WARNING,"Expected dbnextrow() to return NO_MORE_ROWS"); } } } |