From 74ce01efc75fa9085436bfe79c3e6c42c2966783 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Fri, 23 Oct 2015 02:02:57 -0400
Subject: [PATCH] Q() -> rcube::Q()
---
installer/index.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/installer/index.php b/installer/index.php
index 052359c..3e9c6b7 100644
--- a/installer/index.php
+++ b/installer/index.php
@@ -164,7 +164,7 @@
foreach (array('Check environment', 'Create config', 'Test config') as $i => $item) {
$j = $i + 1;
- $link = ($RCI->step >= $j || $RCI->configured) ? '<a href="./index.php?_step='.$j.'">' . Q($item) . '</a>' : Q($item);
+ $link = ($RCI->step >= $j || $RCI->configured) ? '<a href="./index.php?_step='.$j.'">' . rcube::Q($item) . '</a>' : rcube::Q($item);
printf('<li class="step%d%s">%s</li>', $j+1, $RCI->step > $j ? ' passed' : ($RCI->step == $j ? ' current' : ''), $link);
}
?>
--
Gitblit v1.9.1