summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2009-10-13 17:25:54 -0400
committerEvan Prodromou <evan@status.net>2009-10-13 17:25:54 -0400
commit67c387c6a0dc80a5c9beac9d73717763a2ba96f4 (patch)
tree5f03f3939c3ca71f4b9088abf6c3fcdb0f4a6c3f /install.php
parent181de862efe2da16164daea32b74c3da8ea2ed7e (diff)
parentbf4626ddf6362b81d1ce23a5cc300b4d5694c146 (diff)
Merge branch '0.8.x' into 0.9.x
Conflicts: install.php
Diffstat (limited to 'install.php')
-rw-r--r--install.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/install.php b/install.php
index 69f025a6a..319c261e4 100644
--- a/install.php
+++ b/install.php
@@ -372,7 +372,7 @@ function showLibs()
}
echo<<<E_O_T
<div class="instructions">
- <p>Laconica comes bundled with a number of libraries required for the application to work. However, it is best that you use PEAR or you distribution to manage
+ <p>StatusNet comes bundled with a number of libraries required for the application to work. However, it is best that you use PEAR or you distribution to manage
libraries instead, as they tend to provide security updates faster, and may offer improved performance.</p>
<p>On Debian based distributions, such as Ubuntu, use a package manager (such as &quot;aptitude&quot;, &quot;apt-get&quot;, and &quot;synaptic&quot;) to install the package listed.</p>
<p>On RPM based distributions, such as Red Hat, Fedora, CentOS, Scientific Linux, Yellow Dog Linux and Oracle Enterprise Linux, use a package manager (such as &quot;yum&quot;, &quot;apt-rpm&quot;, and &quot;up2date&quot;) to install the package listed.</p>
@@ -384,7 +384,7 @@ E_O_T;
foreach ($absent_libraries as $library) {
echo '<li>';
if (isset($library['url'])) {
- echo '<a href=">'.$library['url'].'">'.htmlentities($library['name']).'</a>';
+ echo '<a href="'.$library['url'].'">'.htmlentities($library['name']).'</a>';
} else {
echo htmlentities($library['name']);
}
@@ -408,7 +408,7 @@ E_O_T;
foreach ($present_libraries as $library) {
echo '<li>';
if (isset($library['url'])) {
- echo '<a href=">'.$library['url'].'">'.htmlentities($library['name']).'</a>';
+ echo '<a href="'.$library['url'].'">'.htmlentities($library['name']).'</a>';
} else {
echo htmlentities($library['name']);
}
@@ -439,7 +439,7 @@ function showForm()
<dd>
<div class="instructions">
<p>Enter your database connection information below to initialize the database.</p>
- <p>Laconica bundles a number of libraries for ease of installation. <a href="?checklibs=true">You can see what bundled libraries you are using, versus what libraries are installed on your server.</a>
+ <p>StatusNet bundles a number of libraries for ease of installation. <a href="?checklibs=true">You can see what bundled libraries you are using, versus what libraries are installed on your server.</a>
</div>
</dd>
</dl>