summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-03-03 08:37:47 +0000
committerDries Buytaert <dries@buytaert.net>2006-03-03 08:37:47 +0000
commitd7e9371e94be34b90c72bd51d56fc239237318d5 (patch)
tree21d00e1ee88fc34ccafd3979b591146cf6d3d930 /update.php
parent1001b7079d19128bb55a71c4fcb5b989400cba31 (diff)
downloadbrdo-d7e9371e94be34b90c72bd51d56fc239237318d5.tar.gz
brdo-d7e9371e94be34b90c72bd51d56fc239237318d5.tar.bz2
- Removing whitespace
Diffstat (limited to 'update.php')
-rw-r--r--update.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/update.php b/update.php
index 20c3e2021..9c29aa6b6 100644
--- a/update.php
+++ b/update.php
@@ -476,7 +476,7 @@ function update_finished_page($success) {
$links[] = '<a href="'. base_path() .'?q=admin">administration pages</a>';
if ($success) {
- $output = '<p>Updates were attempted. If you see no failures below, you may proceed happily to the <a href="index.php?q=admin">administration pages</a>. Otherwise, you may need to update your database manually. All errors have been <a href="index.php?q=admin/logs">logged</a>.</p>';
+ $output = '<p>Updates were attempted. If you see no failures below, you may proceed happily to the <a href="index.php?q=admin">administration pages</a>. Otherwise, you may need to update your database manually. All errors have been <a href="index.php?q=admin/logs">logged</a>.</p>';
}
else {
$output = '<p class="error">The update process did not complete. All errors have been <a href="index.php?q=admin/logs">logged</a>. You may need to check the <code>watchdog</code> table manually.';
@@ -582,7 +582,7 @@ function update_fix_access_table() {
// Convert access table to UTF-8 if needed.
$result = db_fetch_array(db_query('SHOW CREATE TABLE `access`'));
if (!preg_match('/utf8/i', array_pop($result))) {
- update_convert_table_utf8('access');
+ update_convert_table_utf8('access');
}
// Don't run again
@@ -633,7 +633,7 @@ function update_convert_table_utf8($table) {
// Convert binary columns to UTF-8
$ret[] = update_sql('ALTER TABLE {'. $table .'} '. implode(', ', $convert_to_utf8));
}
- return $ret;
+ return $ret;
}
// Some unavoidable errors happen because the database is not yet up to date.