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:
authorHugues Peccatte <hugues.peccatte@gmail.com>2015-07-23 15:38:07 +0300
committerHugues Peccatte <hugues.peccatte@gmail.com>2015-07-23 15:38:07 +0300
commitbf61709259e4b953bced1f332e29b375c5243ba4 (patch)
treeb418ecddc46d2a503e3d7001c98899973326782a /license.php
parent1daf0a030fc199396cca274a64a6002a3685c76e (diff)
Make PHPCS happy.
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
Diffstat (limited to 'license.php')
-rw-r--r--license.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/license.php b/license.php
index c9a050fbcb..7348af874f 100644
--- a/license.php
+++ b/license.php
@@ -25,5 +25,10 @@ $filename = LICENSE_FILE;
if (is_readable($filename)) {
readfile($filename);
} else {
- printf(__('The %s file is not available on this system, please visit www.phpmyadmin.net for more information.'), $filename);
+ printf(
+ __(
+ 'The %s file is not available on this system, please visit ' .
+ 'www.phpmyadmin.net for more information.'
+ ), $filename
+ );
}