aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-03-18 16:12:59 -0500
committerJesús <heckyel@hyperbola.info>2019-03-18 16:12:59 -0500
commit72a15cc2dda03e0dd750c40eab1b585e01dd943f (patch)
treeccca28e064dcdbe314550af7f7ce4090fc98b023 /plugins
parent9e387648693b15f5dc21e3ee4049d1ddff24f6ae (diff)
downloadcl-72a15cc2dda03e0dd750c40eab1b585e01dd943f.tar.lz
cl-72a15cc2dda03e0dd750c40eab1b585e01dd943f.tar.xz
cl-72a15cc2dda03e0dd750c40eab1b585e01dd943f.zip
fix another_read_more_link no procesa los enlaces
Diffstat (limited to 'plugins')
-rw-r--r--plugins/another_read_more_link/another_read_more_link.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/another_read_more_link/another_read_more_link.py b/plugins/another_read_more_link/another_read_more_link.py
index 8eedeb8..8778756 100644
--- a/plugins/another_read_more_link/another_read_more_link.py
+++ b/plugins/another_read_more_link/another_read_more_link.py
@@ -18,7 +18,7 @@ def insert_read_more_link(instance):
ANOTHER_READ_MORE_LINK_FORMAT = instance.settings.get('ANOTHER_READ_MORE_LINK_FORMAT',
'<a class="another-read-more-link" href="{url}#' + READ_MORE_ID + '">{text}</a>')
- content = instance._content
+ content = instance._update_content(instance._content, instance.settings.get('SITEURL'))
marker_location = content.find("<!-- more -->")