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:
authorMichal Čihař <michal@cihar.com>2017-09-13 10:05:10 +0300
committerMichal Čihař <michal@cihar.com>2017-09-13 10:05:10 +0300
commitf76f4692892894cf73d3bfb899dc5c704905ee08 (patch)
treeee629f2265edd790dde433e843aca4f8255a4c80 /index.php
parent46b7eedd5d39dd308d3d7389563e55aff9323122 (diff)
Avoid using print as method name
This seems to confuse some parsers as print is keyword. Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index bb14dce20f..aa59340134 100644
--- a/index.php
+++ b/index.php
@@ -94,7 +94,7 @@ if ($response->isAjax() && ! empty($_REQUEST['recent_table'])) {
if ($GLOBALS['PMA_Config']->isGitRevision()) {
if (isset($_REQUEST['git_revision']) && $response->isAjax()) {
- GitRevision::print();
+ GitRevision::display();
exit;
}
echo '<div id="is_git_revision"></div>';