Changeset 2586:0e34301aa196 for plugins/pages/_public.php
- Timestamp:
- 11/26/13 14:03:59 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pages/_public.php
r2566 r2586 112 112 if ($content != '') 113 113 { 114 if ($core->blog->settings->system->wiki_comments) { 115 $core->initWikiComment(); 114 # --BEHAVIOR-- publicBeforeCommentTransform 115 $buffer = $core->callBehavior('publicBeforeCommentTransform',$content); 116 if ($buffer != '') { 117 $content = $buffer; 116 118 } else { 117 $core->initWikiSimpleComment(); 119 if ($core->blog->settings->system->wiki_comments) { 120 $core->initWikiComment(); 121 } else { 122 $core->initWikiSimpleComment(); 123 } 124 $content = $core->wikiTransform($content); 118 125 } 119 $content = $core->wikiTransform($content);120 126 $content = $core->HTMLfilter($content); 121 127 }
Note: See TracChangeset
for help on using the changeset viewer.