Bugfixes
+- Issue #1364026, Fix link to documentation, also move help to Date API module.
- Issue #1276270, Fix fatal error when using repeat date on user.
- Issue #1362758, Add empty file for the date_plugin_display_attachment.inc file that was removed, to avoid fatal errors if it is missing on a site that formerly used it.
- Issue #1363460, Make sure widget dates do not end up with the current date when they should be empty.
}
/**
- * Implement hook_help().
- */
-function date_help($path, $arg) {
- switch ($path) {
- case 'admin/help#date':
- return '<p>' . t('Complete documentation for the Date and Date API modules is available at <a href="@link">http://drupal.org/node/92460</a>.', array('@link' => 'http://drupal.org/node/92460')) . '</p>';
- break;
- }
-}
-
-/**
* Implements hook_form_FORM_ID_alter().
*/
function date_form_field_ui_field_edit_form_alter(&$form, &$form_state, $form_id) {
*/
/**
+ * Implement hook_help().
+ */
+function date_help($path, $arg) {
+ switch ($path) {
+ case 'admin/help#date':
+ return '<p>' . t('Complete documentation for the Date and Date API modules is available at <a href="@link">http://drupal.org/node/92460</a>.', array('@link' => 'http://drupal.org/node/262062')) . '</p>';
+ break;
+ }
+}
+
+/**
* Extend PHP DateTime class with granularity handling, merge functionality and
* slightly more flexible initialization parameters.
*