From c98864733a1bc609edb107d26762644a8a701b7e Mon Sep 17 00:00:00 2001 From: Diego Najar Date: Fri, 22 Feb 2019 14:25:40 +0100 Subject: [PATCH] bug fix for #965 --- bl-kernel/functions.php | 6 +++--- bl-plugins/remote-content/plugin.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bl-kernel/functions.php b/bl-kernel/functions.php index 63a2472a..19b94522 100644 --- a/bl-kernel/functions.php +++ b/bl-kernel/functions.php @@ -299,7 +299,7 @@ function createPage($args) { Theme::plugins('afterPageCreate'); reindexCategories(); - reindextags(); + reindexTags(); // Add to syslog $syslog->add(array( @@ -350,7 +350,7 @@ function editPage($args) { Theme::plugins('afterPageModify'); reindexCategories(); - reindextags(); + reindexTags(); // Add to syslog $syslog->add(array( @@ -374,7 +374,7 @@ function deletePage($key) { Theme::plugins('afterPageDelete'); reindexCategories(); - reindextags(); + reindexTags(); // Add to syslog $syslog->add(array( diff --git a/bl-plugins/remote-content/plugin.php b/bl-plugins/remote-content/plugin.php index a689b90c..cbff79ea 100644 --- a/bl-plugins/remote-content/plugin.php +++ b/bl-plugins/remote-content/plugin.php @@ -156,7 +156,7 @@ EOF; Theme::plugins('afterPageCreate'); reindexCategories(); - reindextags(); + reindexTags(); } return true;