diff options
Diffstat (limited to 'includes/functions.php')
-rw-r--r-- | includes/functions.php | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/includes/functions.php b/includes/functions.php index 73c506c..4518fa8 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -77,9 +77,10 @@ function bbcode_format ($str) return $str; } - //BBcode 2 HTML was written by WAY2WEB.net - - function BBCode($Text) +/** + * BBcode 2 HTML was written by WAY2WEB.net + */ +function BBCode($Text) { // Replace any html brackets with HTML Entities to prevent executing HTML or script // Don't use strip_tags here because it breaks [url] search by replacing & with amp @@ -574,6 +575,7 @@ function GetBlocks($position = BLOCK_LEFT) OpenBlock($block['title']); include $load; CloseBlock(); + decho("'{$block['dir_name']}' block loaded"); } else { |