mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
MFH: Nuked ending dots from error messages
This commit is contained in:
parent
adae5131f3
commit
6723ed1db3
14 changed files with 27 additions and 28 deletions
|
@ -318,7 +318,7 @@ PHP_FUNCTION(get_browser)
|
|||
char *browscap = INI_STR("browscap");
|
||||
|
||||
if (!browscap || !browscap[0]) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "browscap ini directive not set.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "browscap ini directive not set");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
|
|
@ -463,7 +463,7 @@ PHP_FUNCTION(proc_nice)
|
|||
errno = 0;
|
||||
nice(pri);
|
||||
if (errno) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only a super user may attempt to increase the priority of a process.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Only a super user may attempt to increase the priority of a process");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
|
|
@ -1880,7 +1880,7 @@ static php_stream_filter *consumed_filter_create(const char *filtername, zval *f
|
|||
/* Create this filter */
|
||||
data = pecalloc(1, sizeof(php_consumed_filter_data), persistent);
|
||||
if (!data) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed allocating %zd bytes.", sizeof(php_consumed_filter_data));
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed allocating %zd bytes", sizeof(php_consumed_filter_data));
|
||||
return NULL;
|
||||
}
|
||||
data->persistent = persistent;
|
||||
|
|
|
@ -445,7 +445,7 @@ php_formatted_print(int ht, int *len, int use_array, int format_offset TSRMLS_DC
|
|||
if (argnum <= 0) {
|
||||
efree(result);
|
||||
efree(args);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Argument number must be greater than zero.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Argument number must be greater than zero");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -487,7 +487,7 @@ php_formatted_print(int ht, int *len, int use_array, int format_offset TSRMLS_DC
|
|||
if ((width = php_sprintf_getnumber(format, &inpos)) < 0) {
|
||||
efree(result);
|
||||
efree(args);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Width must be greater than zero and less than %d.", INT_MAX);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Width must be greater than zero and less than %d", INT_MAX);
|
||||
return NULL;
|
||||
}
|
||||
adjusting |= ADJ_WIDTH;
|
||||
|
@ -504,7 +504,7 @@ php_formatted_print(int ht, int *len, int use_array, int format_offset TSRMLS_DC
|
|||
if ((precision = php_sprintf_getnumber(format, &inpos)) < 0) {
|
||||
efree(result);
|
||||
efree(args);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Precision must be greater than zero and less than %d.", INT_MAX);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Precision must be greater than zero and less than %d", INT_MAX);
|
||||
return NULL;
|
||||
}
|
||||
adjusting |= ADJ_PRECISION;
|
||||
|
|
|
@ -412,7 +412,7 @@ php_stream * php_stream_url_wrap_ftp(php_stream_wrapper *wrapper, char *path, ch
|
|||
}
|
||||
if (strpbrk(mode, "wa+")) {
|
||||
if (read_write) {
|
||||
php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "FTP does not support simultaneous read/write connections.");
|
||||
php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "FTP does not support simultaneous read/write connections");
|
||||
return NULL;
|
||||
}
|
||||
if (strchr(mode, 'a')) {
|
||||
|
@ -423,7 +423,7 @@ php_stream * php_stream_url_wrap_ftp(php_stream_wrapper *wrapper, char *path, ch
|
|||
}
|
||||
if (!read_write) {
|
||||
/* No mode specified? */
|
||||
php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Unknown file open mode.");
|
||||
php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Unknown file open mode");
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -486,7 +486,7 @@ php_stream * php_stream_url_wrap_ftp(php_stream_wrapper *wrapper, char *path, ch
|
|||
goto errexit;
|
||||
}
|
||||
} else {
|
||||
php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Remote file already exists and overwrite context option not specified.");
|
||||
php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Remote file already exists and overwrite context option not specified");
|
||||
errno = EEXIST;
|
||||
goto errexit;
|
||||
}
|
||||
|
|
|
@ -76,7 +76,7 @@ PHPAPI int php_url_encode_hash_ex(HashTable *ht, smart_str *formstr,
|
|||
}
|
||||
|
||||
if (zend_hash_get_current_data_ex(ht, (void **)&zdata, NULL) == FAILURE || !zdata || !(*zdata)) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error traversing form data array.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Error traversing form data array");
|
||||
return FAILURE;
|
||||
}
|
||||
if (Z_TYPE_PP(zdata) == IS_ARRAY || Z_TYPE_PP(zdata) == IS_OBJECT) {
|
||||
|
@ -203,7 +203,7 @@ PHP_FUNCTION(http_build_query)
|
|||
}
|
||||
|
||||
if (Z_TYPE_P(formdata) != IS_ARRAY && Z_TYPE_P(formdata) != IS_OBJECT) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Parameter 1 expected to be Array or Object. Incorrect value given.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Parameter 1 expected to be Array or Object. Incorrect value given");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
|
|
@ -137,7 +137,7 @@ php_stream *php_stream_url_wrap_http_ex(php_stream_wrapper *wrapper, char *path,
|
|||
/* Normal http request (possibly with proxy) */
|
||||
|
||||
if (strpbrk(mode, "awx+")) {
|
||||
php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP wrapper does not support writeable connections.");
|
||||
php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "HTTP wrapper does not support writeable connections");
|
||||
php_url_free(resource);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -1317,8 +1317,7 @@ PHP_FUNCTION(getimagesize)
|
|||
#if HAVE_ZLIB && !defined(COMPILE_DL_ZLIB)
|
||||
result = php_handle_swc(stream TSRMLS_CC);
|
||||
#else
|
||||
php_error_docref(NULL TSRMLS_CC, E_NOTICE, "The image is a compressed SWF file, but you do not have a static version of the zlib extension enabled.");
|
||||
|
||||
php_error_docref(NULL TSRMLS_CC, E_NOTICE, "The image is a compressed SWF file, but you do not have a static version of the zlib extension enabled");
|
||||
#endif
|
||||
break;
|
||||
case IMAGE_FILETYPE_PSD:
|
||||
|
|
|
@ -98,7 +98,7 @@ PHP_FUNCTION(mail)
|
|||
char *p, *e;
|
||||
|
||||
if (PG(safe_mode) && (ZEND_NUM_ARGS() == 5)) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "SAFE MODE Restriction in effect. The fifth parameter is disabled in SAFE MODE.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "SAFE MODE Restriction in effect. The fifth parameter is disabled in SAFE MODE");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
|
|
@ -253,7 +253,7 @@ php_stream * php_stream_url_wrap_php(php_stream_wrapper *wrapper, char *path, ch
|
|||
pathdup = estrndup(path + 6, strlen(path + 6));
|
||||
p = strstr(pathdup, "/resource=");
|
||||
if (!p) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "No URL resource specified.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "No URL resource specified");
|
||||
efree(pathdup);
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -357,7 +357,7 @@ PHP_FUNCTION(stream_socket_recvfrom)
|
|||
}
|
||||
|
||||
if (to_read <= 0) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater than 0.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Length parameter must be greater than 0");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
@ -406,7 +406,7 @@ PHP_FUNCTION(stream_get_contents)
|
|||
php_stream_from_zval(stream, &zsrc);
|
||||
|
||||
if (pos > 0 && php_stream_seek(stream, pos, SEEK_SET) < 0) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position %ld in the stream.", pos);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position %ld in the stream", pos);
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
@ -442,7 +442,7 @@ PHP_FUNCTION(stream_copy_to_stream)
|
|||
php_stream_from_zval(dest, &zdest);
|
||||
|
||||
if (pos > 0 && php_stream_seek(src, pos, SEEK_SET) < 0) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position %ld in the stream.", pos);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Failed to seek to position %ld in the stream", pos);
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
@ -757,10 +757,10 @@ PHP_FUNCTION(stream_select)
|
|||
convert_to_long_ex(sec);
|
||||
|
||||
if (Z_LVAL_PP(sec) < 0) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The seconds parameter must be greater than 0.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The seconds parameter must be greater than 0");
|
||||
RETURN_FALSE;
|
||||
} else if (usec < 0) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The microseconds parameter must be greater than 0.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The microseconds parameter must be greater than 0");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
@ -945,7 +945,7 @@ PHP_FUNCTION(stream_context_get_options)
|
|||
}
|
||||
context = decode_context_param(zcontext TSRMLS_CC);
|
||||
if (!context) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid stream/context parameter.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid stream/context parameter");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
@ -975,7 +975,7 @@ PHP_FUNCTION(stream_context_set_option)
|
|||
/* figure out where the context is coming from exactly */
|
||||
context = decode_context_param(zcontext TSRMLS_CC);
|
||||
if (!context) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid stream/context parameter.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid stream/context parameter");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
@ -1002,7 +1002,7 @@ PHP_FUNCTION(stream_context_set_params)
|
|||
|
||||
context = decode_context_param(zcontext TSRMLS_CC);
|
||||
if (!context) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid stream/context parameter.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid stream/context parameter");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
@ -1186,7 +1186,7 @@ PHP_FUNCTION(stream_get_line)
|
|||
}
|
||||
|
||||
if (max_length < 0) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The maximum allowed length must be greater than or equal to zero.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The maximum allowed length must be greater than or equal to zero");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
if (!max_length) {
|
||||
|
|
|
@ -61,7 +61,7 @@ PHP_FUNCTION(uniqid)
|
|||
#if HAVE_USLEEP && !defined(PHP_WIN32)
|
||||
if (!more_entropy) {
|
||||
#if defined(__CYGWIN__)
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "You must use 'more entropy' under CYGWIN.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "You must use 'more entropy' under CYGWIN");
|
||||
RETURN_FALSE;
|
||||
#else
|
||||
usleep(1);
|
||||
|
|
|
@ -375,7 +375,7 @@ PHP_FUNCTION(parse_url)
|
|||
if (resource->fragment != NULL) RETVAL_STRING(resource->fragment, 1);
|
||||
break;
|
||||
default:
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid URL component identifier %ld.", key);
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid URL component identifier %ld", key);
|
||||
RETVAL_FALSE;
|
||||
}
|
||||
goto done;
|
||||
|
|
|
@ -215,7 +215,7 @@ PHP_FUNCTION(convert_uudecode)
|
|||
|
||||
dst_len = php_uudecode(src, src_len, &dst);
|
||||
if (dst_len < 0) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The given parameter is not a valid uuencoded string.");
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "The given parameter is not a valid uuencoded string");
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue