diff --git a/includes/common.inc b/includes/common.inc index a5c9a2f11fb51635252d19f6b0132a57226dad1e..f23e94642be9e3176c17a798b94b13e0b8c71bf3 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1573,7 +1573,7 @@ function drupal_valid_token($token, $value = '', $skip_anonymous = FALSE) { * @param $url * An absolute URL of the XML-RPC endpoint. * Example: - * http://www.domain.com/xmlrpc.php + * http://www.example.com/xmlrpc.php * @param ... * For one request: * The method name followed by a variable number of arguments to the method. diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index ff6c9583849c0cfad25eaea286eff49b679fd32a..e77e9d2670dc454262d8bb4c89a8820077b5ad21 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -681,7 +681,7 @@ function _blogapi_get_post($node, $bodies = TRUE) { 'link' => url('node/'.$node->nid, NULL, NULL, TRUE), 'permaLink' => url('node/'.$node->nid, NULL, NULL, TRUE), ); - if ($bodies) { + if ($bodies) { if ($node->comment == 1) { $comment = 2; } diff --git a/modules/contact/contact.module b/modules/contact/contact.module index c2232e3a132bc2cabffc3200e1c97f985a28c1c0..b83b4049bd4967bf13747fb6e08658da1084d601 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -174,7 +174,7 @@ function contact_admin_edit($cid = NULL) { $form['recipients'] = array('#type' => 'textarea', '#title' => t('Recipients'), '#default_value' => $edit['recipients'], - '#description' => t("Example: 'webmaster@yoursite.com' or 'sales@yoursite.com'. To specify multiple recipients, separate each e-mail address with a comma."), + '#description' => t("Example: 'webmaster@example.com' or 'sales@example.com,support@example.com'. To specify multiple recipients, separate each e-mail address with a comma."), '#required' => TRUE, ); $form['reply'] = array('#type' => 'textarea',