From 0efa899d6ca3ddd1feb78bf8332d1f73841d2154 Mon Sep 17 00:00:00 2001 From: Sander Nilsen Date: Sat, 2 May 2020 10:55:31 +0200 Subject: [PATCH] Grammar correction (#7346) --- installer/config.php | 2 +- program/include/rcmail.php | 2 +- program/steps/addressbook/photo.inc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/config.php b/installer/config.php index a246dc749..d8c13d0e8 100644 --- a/installer/config.php +++ b/installer/config.php @@ -104,7 +104,7 @@ $input_support = new html_inputfield(array('name' => '_support_url', 'size' => 5 echo $input_support->show($RCI->getprop('support_url')); ?> -
Provide an URL where a user can get support for this Roundcube installation.
PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
+
Provide a URL where a user can get support for this Roundcube installation.
PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!

Enter an absolute URL (including http://) to a support page/form or a mailto: link.

diff --git a/program/include/rcmail.php b/program/include/rcmail.php index d3121b3ce..8d0fc1c11 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -850,7 +850,7 @@ class rcmail extends rcube * * @param mixed $p Either a string with the action or * url parameters as key-value pairs - * @param boolean $absolute Build an URL absolute to document root + * @param boolean $absolute Build a URL absolute to document root * @param boolean $full Create fully qualified URL including http(s):// and hostname * @param bool $secure Return absolute URL in secure location * diff --git a/program/steps/addressbook/photo.inc b/program/steps/addressbook/photo.inc index 62b014ece..0e9ec816b 100644 --- a/program/steps/addressbook/photo.inc +++ b/program/steps/addressbook/photo.inc @@ -73,7 +73,7 @@ if ($plugin['url']) { $data = $plugin['data']; -// detect if photo data is an URL +// detect if photo data is a URL if (strlen($data) < 1024 && filter_var($data, FILTER_VALIDATE_URL)) { $RCMAIL->output->redirect($data); }