summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
Diffstat (limited to 'update.php')
-rwxr-xr-xupdate.php8
1 files changed, 3 insertions, 5 deletions
diff --git a/update.php b/update.php
index 99f4a59dc..553175c8c 100755
--- a/update.php
+++ b/update.php
@@ -366,13 +366,11 @@
while (true) {
while ($line = $sth->fetch()) {
- $tsvector_combined = mb_substr($line['title'] . ' ' .
- preg_replace('/[<\?\:]/', ' ', strip_tags($line['content'])),
- 0, 1000000);
+ $tsvector_combined = mb_substr(strip_tags($line["title"] . " " . $line["content"]), 0, 1000000);
- $usth->execute([$tsvector_combined, $line['id']]);
+ $usth->execute([$tsvector_combined, $line['id']]);
- $processed++;
+ $processed++;
}
print "Processed $processed articles...\n";