Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2021-09-28 03:40:22 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2021-09-28 03:40:22 +0300
commit3e0856c77b67fb0adbd1ca618632794ce5035996 (patch)
tree1effd30dcd9df5340654288ff796e14d673e8a35 /libraries/classes/Engines
parent048c0c1f6ecdbe2c1ac603e5b42c48e379334e7b (diff)
Remove useless string concatenations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/classes/Engines')
-rw-r--r--libraries/classes/Engines/Innodb.php13
-rw-r--r--libraries/classes/Engines/Pbxt.php3
2 files changed, 4 insertions, 12 deletions
diff --git a/libraries/classes/Engines/Innodb.php b/libraries/classes/Engines/Innodb.php
index 279b5142db..ab27eba52a 100644
--- a/libraries/classes/Engines/Innodb.php
+++ b/libraries/classes/Engines/Innodb.php
@@ -29,10 +29,7 @@ class Innodb extends StorageEngine
return [
'innodb_data_home_dir' => [
'title' => __('Data home directory'),
- 'desc' => __(
- 'The common part of the directory path for all InnoDB data '
- . 'files.'
- ),
+ 'desc' => __('The common part of the directory path for all InnoDB data files.'),
],
'innodb_data_file_path' => [
'title' => __('Data files'),
@@ -40,17 +37,13 @@ class Innodb extends StorageEngine
'innodb_autoextend_increment' => [
'title' => __('Autoextend increment'),
'desc' => __(
- 'The increment size for extending the size of an autoextending '
- . 'tablespace when it becomes full.'
+ 'The increment size for extending the size of an autoextending tablespace when it becomes full.'
),
'type' => StorageEngine::DETAILS_TYPE_NUMERIC,
],
'innodb_buffer_pool_size' => [
'title' => __('Buffer pool size'),
- 'desc' => __(
- 'The size of the memory buffer InnoDB uses to cache data and '
- . 'indexes of its tables.'
- ),
+ 'desc' => __('The size of the memory buffer InnoDB uses to cache data and indexes of its tables.'),
'type' => StorageEngine::DETAILS_TYPE_SIZE,
],
'innodb_additional_mem_pool_size' => [
diff --git a/libraries/classes/Engines/Pbxt.php b/libraries/classes/Engines/Pbxt.php
index 896c23decf..dc74407fd6 100644
--- a/libraries/classes/Engines/Pbxt.php
+++ b/libraries/classes/Engines/Pbxt.php
@@ -182,8 +182,7 @@ class Pbxt extends StorageEngine
{
return '<p>' . sprintf(
__(
- 'Documentation and further information about PBXT'
- . ' can be found on the %sPrimeBase XT Home Page%s.'
+ 'Documentation and further information about PBXT can be found on the %sPrimeBase XT Home Page%s.'
),
'<a href="' . Core::linkURL('https://mariadb.com/kb/en/mariadb/about-pbxt/')
. '" rel="noopener noreferrer" target="_blank">',