diff --git a/core/includes/errors.inc b/core/includes/errors.inc index 5b6c56b..68c9a7b 100644 --- a/core/includes/errors.inc +++ b/core/includes/errors.inc @@ -61,7 +61,8 @@ function drupal_error_levels() { * @param $line * The line number the error was raised at. * @param $context - * An array that points to the active symbol table at the point the error occurred. + * An array that points to the active symbol table at the point the error + * occurred. */ function _drupal_error_handler_real($error_level, $message, $filename, $line, $context) { if ($error_level & error_reporting()) { @@ -175,8 +176,8 @@ function error_displayable($error = NULL) { * * @param $error * An array with the following keys: %type, !message, %function, %file, %line - * and severity_level. All the parameters are plain-text, with the exception of - * !message, which needs to be a safe HTML string. + * and severity_level. All the parameters are plain-text, with the exception + * of !message, which needs to be a safe HTML string. * @param $fatal * TRUE if the error is fatal. */ diff --git a/core/includes/file.inc b/core/includes/file.inc index 554c89e..09af50f 100644 --- a/core/includes/file.inc +++ b/core/includes/file.inc @@ -1893,7 +1893,8 @@ function file_save_data($data, $destination = NULL, $replace = FILE_EXISTS_RENAM * @param $destination * A string containing the destination location. This must be a stream wrapper * URI. If no value is provided, a randomized name will be generated and the - * file will be saved using Drupal's default files scheme, usually "public://". + * file will be saved using Drupal's default files scheme, usually + * "public://". * @param $replace * Replace behavior when the destination file already exists: * - FILE_EXISTS_REPLACE - Replace the existing file. diff --git a/core/includes/form.inc b/core/includes/form.inc index 2ac3068..a8560c7 100644 --- a/core/includes/form.inc +++ b/core/includes/form.inc @@ -207,8 +207,8 @@ function drupal_get_form($form_id) { * validation functions and submit functions use this array for nearly all * their decision making. (Note that * @link http://api.drupal.org/api/drupal/developer--topics--forms_api_reference.html/7#tree #tree @endlink - * determines whether the values are a flat array or an array whose structure - * parallels the $form array.) + * determines whether the values are a flat array or an array whose + * structure parallels the $form array.) * - input: The array of values as they were submitted by the user. These are * raw and unvalidated, so should not be used without a thorough * understanding of security implications. In almost all cases, code should @@ -3603,8 +3603,8 @@ function form_process_vertical_tabs($element, &$form_state) { * * @param $variables * An associative array containing: - * - element: An associative array containing the properties and children of the - * fieldset. Properties used: #children. + * - element: An associative array containing the properties and children of + * the fieldset. Properties used: #children. * * @ingroup themeable */ @@ -3997,7 +3997,8 @@ function theme_form_required_marker($variables) { * * Form element labels include the #title and a #required marker. The label is * associated with the element itself by the element #id. Labels may appear - * before or after elements, depending on theme_form_element() and #title_display. + * before or after elements, depending on theme_form_element() and + * #title_display. * * This function will not be called for elements with no labels, depending on * #title_display. For elements that have an empty #title and are not required,