aboutsummaryrefslogtreecommitdiff
path: root/views/installation/install/pages/requirements.php
diff options
context:
space:
mode:
authorPaweł Sroka <srokap@gmail.com>2012-11-04 08:25:28 +0100
committerPaweł Sroka <srokap@gmail.com>2012-11-04 08:25:28 +0100
commit3bf72994688ad9292bf37444d80ab5ab1a002748 (patch)
tree2fcdd2f2773e3bf4cc0af9e8133918133a6f6760 /views/installation/install/pages/requirements.php
parentb2232139f13b759e8f5ce62def75eaeaa530a5b6 (diff)
downloadelgg-3bf72994688ad9292bf37444d80ab5ab1a002748.tar.gz
elgg-3bf72994688ad9292bf37444d80ab5ab1a002748.tar.bz2
Fixes #1479 - Replaces WP autop with implementation from Steve Clay.
Diffstat (limited to 'views/installation/install/pages/requirements.php')
-rw-r--r--views/installation/install/pages/requirements.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/installation/install/pages/requirements.php b/views/installation/install/pages/requirements.php
index e3689e761..06f309c90 100644
--- a/views/installation/install/pages/requirements.php
+++ b/views/installation/install/pages/requirements.php
@@ -14,7 +14,7 @@ if ($vars['num_failures'] != 0) {
$instruct_text = elgg_echo('install:requirements:instructions:success');
}
-echo autop($instruct_text);
+echo elgg_autop($instruct_text);
$report = $vars['report'];
foreach ($report as $category => $checks) {
@@ -23,7 +23,7 @@ foreach ($report as $category => $checks) {
echo "<ul class=\"elgg-require-$category\">";
foreach ($checks as $check) {
echo "<li class=\"{$check['severity']}\">";
- echo autop($check['message']);
+ echo elgg_autop($check['message']);
echo "</li>";
}
echo "</ul>";