diff --git a/libs/plugins/block.textformat.php b/libs/plugins/block.textformat.php
index 2ca6a5c8..a363b07f 100644
--- a/libs/plugins/block.textformat.php
+++ b/libs/plugins/block.textformat.php
@@ -8,19 +8,19 @@
/**
* Smarty {textformat}{/textformat} block plugin
- * Type: block function
- * Name: textformat
+ * Type: block function
+ * Name: textformat
* Purpose: format text a certain way with preset styles
- * or custom wrap/indent settings
+ * or custom wrap/indent settings
* Params:
- *
diff --git a/libs/plugins/function.cycle.php b/libs/plugins/function.cycle.php
index ab9c844a..b871524f 100644
--- a/libs/plugins/function.cycle.php
+++ b/libs/plugins/function.cycle.php
@@ -8,12 +8,12 @@
/**
* Smarty {cycle} function plugin
- * Type: function
- * Name: cycle
- * Date: May 3, 2002
- * Purpose: cycle through given values
+ * Type: function
+ * Name: cycle
+ * Date: May 3, 2002
+ * Purpose: cycle through given values
* Params:
- *
+ *
* - name - name of cycle (optional)
* - values - comma separated list of values to cycle, or an array of values to cycle
* (this can be left out for subsequent calls)
@@ -22,13 +22,13 @@
* - advance - boolean - whether or not to advance the cycle
* - delimiter - the value delimiter, default is ","
* - assign - boolean, assigns to template var instead of printed.
- *
- * Examples:
- *
+ *
+ * Examples:
+ *
* {cycle values="#eeeeee,#d0d0d0d"}
* {cycle name=row values="one,two,three" reset=true}
* {cycle name=row}
- *
+ *
*
* @link http://www.smarty.net/manual/en/language.function.cycle.php {cycle}
* (Smarty online manual)
diff --git a/libs/plugins/function.fetch.php b/libs/plugins/function.fetch.php
index 84bf40d7..9539e1fc 100644
--- a/libs/plugins/function.fetch.php
+++ b/libs/plugins/function.fetch.php
@@ -8,8 +8,8 @@
/**
* Smarty {fetch} plugin
- * Type: function
- * Name: fetch
+ * Type: function
+ * Name: fetch
* Purpose: fetch file, web or ftp data and display results
*
* @link http://www.smarty.net/manual/en/language.function.fetch.php {fetch}
diff --git a/libs/plugins/function.html_checkboxes.php b/libs/plugins/function.html_checkboxes.php
index ae918fee..9145d8b3 100644
--- a/libs/plugins/function.html_checkboxes.php
+++ b/libs/plugins/function.html_checkboxes.php
@@ -8,19 +8,19 @@
/**
* Smarty {html_checkboxes} function plugin
- * File: function.html_checkboxes.php
- * Type: function
- * Name: html_checkboxes
- * Date: 24.Feb.2003
- * Purpose: Prints out a list of checkbox input types
+ * File: function.html_checkboxes.php
+ * Type: function
+ * Name: html_checkboxes
+ * Date: 24.Feb.2003
+ * Purpose: Prints out a list of checkbox input types
* Examples:
- *
+ *
* {html_checkboxes values=$ids output=$names}
* {html_checkboxes values=$ids name='box' separator=' ' output=$names}
* {html_checkboxes values=$ids checked=$checked separator=' ' output=$names}
- *
+ *
* Params:
- *
+ *
* - name (optional) - string default "checkbox"
* - values (required) - array
* - options (optional) - associative array
@@ -29,7 +29,7 @@
* - output (optional) - the output next to each checkbox
* - assign (optional) - assign the output as an array to this variable
* - escape (optional) - escape the content (not value), defaults to true
- *
+ *
*
* @link http://www.smarty.net/manual/en/language.function.html.checkboxes.php {html_checkboxes}
* (Smarty online manual)
diff --git a/libs/plugins/function.html_image.php b/libs/plugins/function.html_image.php
index 9b9ba7b2..fda3ff34 100644
--- a/libs/plugins/function.html_image.php
+++ b/libs/plugins/function.html_image.php
@@ -8,20 +8,20 @@
/**
* Smarty {html_image} function plugin
- * Type: function
- * Name: html_image
- * Date: Feb 24, 2003
- * Purpose: format HTML tags for the image
- * Examples: {html_image file="/images/masthead.gif"}
- * Output:
+ * Type: function
+ * Name: html_image
+ * Date: Feb 24, 2003
+ * Purpose: format HTML tags for the image
+ * Examples: {html_image file="/images/masthead.gif"}
+ * Output:
* Params:
- *
+ *
* - file - (required) - file (and path) of image
* - height - (optional) - image height (default actual height)
* - width - (optional) - image width (default actual width)
* - basedir - (optional) - base directory for absolute paths, default is environment variable DOCUMENT_ROOT
* - path_prefix - prefix for path output (optional, default empty)
- *
+ *
*
* @link http://www.smarty.net/manual/en/language.function.html.image.php {html_image}
* (Smarty online manual)
diff --git a/libs/plugins/function.html_options.php b/libs/plugins/function.html_options.php
index 7b14dc67..d3c2768b 100644
--- a/libs/plugins/function.html_options.php
+++ b/libs/plugins/function.html_options.php
@@ -8,12 +8,12 @@
/**
* Smarty {html_options} function plugin
- * Type: function
- * Name: html_options
+ * Type: function
+ * Name: html_options
* Purpose: Prints the list of tags generated from
- * the passed parameters
+ * the passed parameters
* Params:
- *
+ *
* - name (optional) - string default "select"
* - values (required) - if no options supplied) - array
* - options (required) - if no values supplied) - associative array
@@ -21,7 +21,7 @@
* - output (required) - if not options supplied) - array
* - id (optional) - string default not set
* - class (optional) - string default not set
- *
+ *
*
* @link http://www.smarty.net/manual/en/language.function.html.options.php {html_image}
* (Smarty online manual)
diff --git a/libs/plugins/function.html_radios.php b/libs/plugins/function.html_radios.php
index 1547c27c..8678ec7d 100644
--- a/libs/plugins/function.html_radios.php
+++ b/libs/plugins/function.html_radios.php
@@ -8,13 +8,13 @@
/**
* Smarty {html_radios} function plugin
- * File: function.html_radios.php
- * Type: function
- * Name: html_radios
- * Date: 24.Feb.2003
- * Purpose: Prints out a list of radio input types
+ * File: function.html_radios.php
+ * Type: function
+ * Name: html_radios
+ * Date: 24.Feb.2003
+ * Purpose: Prints out a list of radio input types
* Params:
- *
+ *
* - name (optional) - string default "radio"
* - values (required) - array
* - options (required) - associative array
@@ -23,13 +23,13 @@
* - output (optional) - the output next to each radio button
* - assign (optional) - assign the output as an array to this variable
* - escape (optional) - escape the content (not value), defaults to true
- *
+ *
* Examples:
- *
+ *
* {html_radios values=$ids output=$names}
* {html_radios values=$ids name='box' separator=' ' output=$names}
* {html_radios values=$ids checked=$checked separator=' ' output=$names}
- *
+ *
*
* @link http://smarty.php.net/manual/en/language.function.html.radios.php {html_radios}
* (Smarty online manual)
diff --git a/libs/plugins/function.html_select_date.php b/libs/plugins/function.html_select_date.php
index 454e7714..d894435f 100644
--- a/libs/plugins/function.html_select_date.php
+++ b/libs/plugins/function.html_select_date.php
@@ -8,11 +8,11 @@
/**
* Smarty {html_select_date} plugin
- * Type: function
- * Name: html_select_date
+ * Type: function
+ * Name: html_select_date
* Purpose: Prints the dropdowns for date selection.
* ChangeLog:
- *
+ *
* - 1.0 initial release
* - 1.1 added support for +/- N syntax for begin
* and end year values. (Monte)
@@ -28,7 +28,7 @@
* of 0000-00-00 dates (cybot, boots)
* - 2.0 complete rewrite for performance,
* added attributes month_names, *_id
- *
+ *
*
* @link http://www.smarty.net/manual/en/language.function.html.select.date.php {html_select_date}
* (Smarty online manual)
diff --git a/libs/plugins/function.html_select_time.php b/libs/plugins/function.html_select_time.php
index 9333f6dd..8972c426 100644
--- a/libs/plugins/function.html_select_time.php
+++ b/libs/plugins/function.html_select_time.php
@@ -8,8 +8,8 @@
/**
* Smarty {html_select_time} function plugin
- * Type: function
- * Name: html_select_time
+ * Type: function
+ * Name: html_select_time
* Purpose: Prints the dropdowns for time selection
*
* @link http://www.smarty.net/manual/en/language.function.html.select.time.php {html_select_time}
diff --git a/libs/plugins/function.html_table.php b/libs/plugins/function.html_table.php
index 420d61af..d9a9fd69 100644
--- a/libs/plugins/function.html_table.php
+++ b/libs/plugins/function.html_table.php
@@ -8,12 +8,12 @@
/**
* Smarty {html_table} function plugin
- * Type: function
- * Name: html_table
- * Date: Feb 17, 2003
- * Purpose: make an html table from an array of data
+ * Type: function
+ * Name: html_table
+ * Date: Feb 17, 2003
+ * Purpose: make an html table from an array of data
* Params:
- *
+ *
* - loop - array to loop through
* - cols - number of columns, comma separated list of column names
* or array of column names
@@ -28,13 +28,13 @@
* - hdir - horizontal direction (default: "right", means left-to-right)
* - inner - inner loop (default "cols": print $loop line by line,
* $loop will be printed column by column otherwise)
- *
+ *
* Examples:
- *
+ *
* {table loop=$data}
* {table loop=$data cols=4 tr_attr='"bgcolor=red"'}
* {table loop=$data cols="first,second,third" tr_attr=$colors}
- *
+ *
*
* @author Monte Ohrt
* @author credit to Messju Mohr
diff --git a/libs/plugins/function.mailto.php b/libs/plugins/function.mailto.php
index 9a8e7e80..0d817535 100644
--- a/libs/plugins/function.mailto.php
+++ b/libs/plugins/function.mailto.php
@@ -8,12 +8,12 @@
/**
* Smarty {mailto} function plugin
- * Type: function
- * Name: mailto
+ * Type: function
+ * Name: mailto
* Date: May 21, 2002
- * Purpose: automate mailto address link creation, and optionally encode them.
+ * Purpose: automate mailto address link creation, and optionally encode them.
* Params:
- *
+ *
* - address - (required) - e-mail address
* - text - (optional) - text to display, default is address
* - encode - (optional) - can be one of:
@@ -27,16 +27,16 @@
* - newsgroups - (optional) - newsgroup(s) to post to
* - followupto - (optional) - address(es) to follow up to
* - extra - (optional) - extra tags for the href link
- *
+ *
* Examples:
- *
+ *
* {mailto address="me@domain.com"}
* {mailto address="me@domain.com" encode="javascript"}
* {mailto address="me@domain.com" encode="hex"}
* {mailto address="me@domain.com" subject="Hello to you!"}
* {mailto address="me@domain.com" cc="you@domain.com,they@domain.com"}
* {mailto address="me@domain.com" extra='class="mailto"'}
- *
+ *
*
* @link http://www.smarty.net/manual/en/language.function.mailto.php {mailto}
* (Smarty online manual)
diff --git a/libs/plugins/function.math.php b/libs/plugins/function.math.php
index 18054cbf..396ad085 100644
--- a/libs/plugins/function.math.php
+++ b/libs/plugins/function.math.php
@@ -9,8 +9,8 @@
/**
* Smarty {math} function plugin
- * Type: function
- * Name: math
+ * Type: function
+ * Name: math
* Purpose: handle math computations in template
*
* @link http://www.smarty.net/manual/en/language.function.math.php {math}
diff --git a/libs/plugins/modifier.capitalize.php b/libs/plugins/modifier.capitalize.php
index 686f869a..e354977b 100644
--- a/libs/plugins/modifier.capitalize.php
+++ b/libs/plugins/modifier.capitalize.php
@@ -8,8 +8,8 @@
/**
* Smarty capitalize modifier plugin
- * Type: modifier
- * Name: capitalize
+ * Type: modifier
+ * Name: capitalize
* Purpose: capitalize words in the string
* {@internal {$string|capitalize:true:true} is the fastest option for MBString enabled systems }}
*
diff --git a/libs/plugins/modifier.date_format.php b/libs/plugins/modifier.date_format.php
index 325d43b6..b45b2d4b 100644
--- a/libs/plugins/modifier.date_format.php
+++ b/libs/plugins/modifier.date_format.php
@@ -8,10 +8,10 @@
/**
* Smarty date_format modifier plugin
- * Type: modifier
- * Name: date_format
- * Purpose: format datestamps via strftime
- * Input:
+ * Type: modifier
+ * Name: date_format
+ * Purpose: format datestamps via strftime
+ * Input:
* - string: input date string
* - format: strftime format for output
* - default_date: default date if $string is empty
diff --git a/libs/plugins/modifier.debug_print_var.php b/libs/plugins/modifier.debug_print_var.php
index 2eb61dd8..2bd11215 100644
--- a/libs/plugins/modifier.debug_print_var.php
+++ b/libs/plugins/modifier.debug_print_var.php
@@ -8,8 +8,8 @@
/**
* Smarty debug_print_var modifier plugin
- * Type: modifier
- * Name: debug_print_var
+ * Type: modifier
+ * Name: debug_print_var
* Purpose: formats variable contents for display in the console
*
* @author Monte Ohrt
diff --git a/libs/plugins/modifier.escape.php b/libs/plugins/modifier.escape.php
index 2124e507..a1c4682c 100644
--- a/libs/plugins/modifier.escape.php
+++ b/libs/plugins/modifier.escape.php
@@ -8,8 +8,8 @@
/**
* Smarty escape modifier plugin
- * Type: modifier
- * Name: escape
+ * Type: modifier
+ * Name: escape
* Purpose: escape string for output
*
* @link http://www.smarty.net/docs/en/language.modifier.escape
diff --git a/libs/plugins/modifier.mb_wordwrap.php b/libs/plugins/modifier.mb_wordwrap.php
index 9da3017a..93c6241e 100644
--- a/libs/plugins/modifier.mb_wordwrap.php
+++ b/libs/plugins/modifier.mb_wordwrap.php
@@ -7,8 +7,8 @@
*/
/**
* Smarty wordwrap modifier plugin
- * Type: modifier
- * Name: mb_wordwrap
+ * Type: modifier
+ * Name: mb_wordwrap
* Purpose: Wrap a string to a given number of characters
*
diff --git a/libs/plugins/modifier.regex_replace.php b/libs/plugins/modifier.regex_replace.php
index 85f41fdd..479aba87 100644
--- a/libs/plugins/modifier.regex_replace.php
+++ b/libs/plugins/modifier.regex_replace.php
@@ -8,8 +8,8 @@
/**
* Smarty regex_replace modifier plugin
- * Type: modifier
- * Name: regex_replace
+ * Type: modifier
+ * Name: regex_replace
* Purpose: regular expression search/replace
*
* @link http://smarty.php.net/manual/en/language.modifier.regex.replace.php
diff --git a/libs/plugins/modifier.replace.php b/libs/plugins/modifier.replace.php
index 94450b77..a1b043b6 100644
--- a/libs/plugins/modifier.replace.php
+++ b/libs/plugins/modifier.replace.php
@@ -8,8 +8,8 @@
/**
* Smarty replace modifier plugin
- * Type: modifier
- * Name: replace
+ * Type: modifier
+ * Name: replace
* Purpose: simple search/replace
*
* @link http://smarty.php.net/manual/en/language.modifier.replace.php replace (Smarty online manual)
diff --git a/libs/plugins/modifier.spacify.php b/libs/plugins/modifier.spacify.php
index e5c41ad8..1e29fd55 100644
--- a/libs/plugins/modifier.spacify.php
+++ b/libs/plugins/modifier.spacify.php
@@ -8,8 +8,8 @@
/**
* Smarty spacify modifier plugin
- * Type: modifier
- * Name: spacify
+ * Type: modifier
+ * Name: spacify
* Purpose: add spaces between characters in a string
*
* @link http://smarty.php.net/manual/en/language.modifier.spacify.php spacify (Smarty online manual)
diff --git a/libs/plugins/modifier.truncate.php b/libs/plugins/modifier.truncate.php
index 0f79dd26..bb9df92d 100644
--- a/libs/plugins/modifier.truncate.php
+++ b/libs/plugins/modifier.truncate.php
@@ -8,8 +8,8 @@
/**
* Smarty truncate modifier plugin
- * Type: modifier
- * Name: truncate
+ * Type: modifier
+ * Name: truncate
* Purpose: Truncate a string to a certain length if necessary,
* optionally splitting in the middle of a word, and
* appending the $etc string or inserting $etc into the middle.
diff --git a/libs/plugins/modifiercompiler.cat.php b/libs/plugins/modifiercompiler.cat.php
index db9d81fb..919b03c3 100644
--- a/libs/plugins/modifiercompiler.cat.php
+++ b/libs/plugins/modifiercompiler.cat.php
@@ -8,11 +8,11 @@
/**
* Smarty cat modifier plugin
- * Type: modifier
- * Name: cat
- * Date: Feb 24, 2003
- * Purpose: catenate a value to a variable
- * Input: string to catenate
+ * Type: modifier
+ * Name: cat
+ * Date: Feb 24, 2003
+ * Purpose: catenate a value to a variable
+ * Input: string to catenate
* Example: {$var|cat:"foo"}
*
* @link http://smarty.php.net/manual/en/language.modifier.cat.php cat
diff --git a/libs/plugins/modifiercompiler.count_characters.php b/libs/plugins/modifiercompiler.count_characters.php
index d2c9a4cf..8116aa32 100644
--- a/libs/plugins/modifiercompiler.count_characters.php
+++ b/libs/plugins/modifiercompiler.count_characters.php
@@ -8,8 +8,8 @@
/**
* Smarty count_characters modifier plugin
- * Type: modifier
- * Name: count_characters
+ * Type: modifier
+ * Name: count_characters
* Purpose: count the number of characters in a text
*
* @link http://www.smarty.net/manual/en/language.modifier.count.characters.php count_characters (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.count_paragraphs.php b/libs/plugins/modifiercompiler.count_paragraphs.php
index f7f44776..1917d290 100644
--- a/libs/plugins/modifiercompiler.count_paragraphs.php
+++ b/libs/plugins/modifiercompiler.count_paragraphs.php
@@ -8,8 +8,8 @@
/**
* Smarty count_paragraphs modifier plugin
- * Type: modifier
- * Name: count_paragraphs
+ * Type: modifier
+ * Name: count_paragraphs
* Purpose: count the number of paragraphs in a text
*
* @link http://www.smarty.net/manual/en/language.modifier.count.paragraphs.php
diff --git a/libs/plugins/modifiercompiler.count_sentences.php b/libs/plugins/modifiercompiler.count_sentences.php
index 20032925..a782d8e0 100644
--- a/libs/plugins/modifiercompiler.count_sentences.php
+++ b/libs/plugins/modifiercompiler.count_sentences.php
@@ -8,7 +8,7 @@
/**
* Smarty count_sentences modifier plugin
- * Type: modifier
+ * Type: modifier
* Name: count_sentences
* Purpose: count the number of sentences in a text
*
diff --git a/libs/plugins/modifiercompiler.count_words.php b/libs/plugins/modifiercompiler.count_words.php
index f20a197c..dc8500c7 100644
--- a/libs/plugins/modifiercompiler.count_words.php
+++ b/libs/plugins/modifiercompiler.count_words.php
@@ -8,8 +8,8 @@
/**
* Smarty count_words modifier plugin
- * Type: modifier
- * Name: count_words
+ * Type: modifier
+ * Name: count_words
* Purpose: count the number of words in a text
*
* @link http://www.smarty.net/manual/en/language.modifier.count.words.php count_words (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.default.php b/libs/plugins/modifiercompiler.default.php
index 2c4c00a3..9fe5d4da 100644
--- a/libs/plugins/modifiercompiler.default.php
+++ b/libs/plugins/modifiercompiler.default.php
@@ -8,8 +8,8 @@
/**
* Smarty default modifier plugin
- * Type: modifier
- * Name: default
+ * Type: modifier
+ * Name: default
* Purpose: designate default value for empty variables
*
* @link http://www.smarty.net/manual/en/language.modifier.default.php default (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.escape.php b/libs/plugins/modifiercompiler.escape.php
index 1315ac6e..62a1b8be 100644
--- a/libs/plugins/modifiercompiler.escape.php
+++ b/libs/plugins/modifiercompiler.escape.php
@@ -8,8 +8,8 @@
/**
* Smarty escape modifier plugin
- * Type: modifier
- * Name: escape
+ * Type: modifier
+ * Name: escape
* Purpose: escape string for output
*
* @link http://www.smarty.net/docsv2/en/language.modifier.escape count_characters (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.from_charset.php b/libs/plugins/modifiercompiler.from_charset.php
index e25a9574..b5732db4 100644
--- a/libs/plugins/modifiercompiler.from_charset.php
+++ b/libs/plugins/modifiercompiler.from_charset.php
@@ -8,8 +8,8 @@
/**
* Smarty from_charset modifier plugin
- * Type: modifier
- * Name: from_charset
+ * Type: modifier
+ * Name: from_charset
* Purpose: convert character encoding from $charset to internal encoding
*
* @author Rodney Rehm
diff --git a/libs/plugins/modifiercompiler.indent.php b/libs/plugins/modifiercompiler.indent.php
index 851f1844..fede8aa7 100644
--- a/libs/plugins/modifiercompiler.indent.php
+++ b/libs/plugins/modifiercompiler.indent.php
@@ -8,8 +8,8 @@
/**
* Smarty indent modifier plugin
- * Type: modifier
- * Name: indent
+ * Type: modifier
+ * Name: indent
* Purpose: indent lines of text
*
* @link http://www.smarty.net/manual/en/language.modifier.indent.php indent (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.lower.php b/libs/plugins/modifiercompiler.lower.php
index a335eff7..8c6c26a8 100644
--- a/libs/plugins/modifiercompiler.lower.php
+++ b/libs/plugins/modifiercompiler.lower.php
@@ -8,8 +8,8 @@
/**
* Smarty lower modifier plugin
- * Type: modifier
- * Name: lower
+ * Type: modifier
+ * Name: lower
* Purpose: convert string to lowercase
*
* @link http://www.smarty.net/manual/en/language.modifier.lower.php lower (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.noprint.php b/libs/plugins/modifiercompiler.noprint.php
index 4906908b..455cfe14 100644
--- a/libs/plugins/modifiercompiler.noprint.php
+++ b/libs/plugins/modifiercompiler.noprint.php
@@ -8,8 +8,8 @@
/**
* Smarty noprint modifier plugin
- * Type: modifier
- * Name: noprint
+ * Type: modifier
+ * Name: noprint
* Purpose: return an empty string
*
* @author Uwe Tews
diff --git a/libs/plugins/modifiercompiler.string_format.php b/libs/plugins/modifiercompiler.string_format.php
index bcf9883d..8d3bfa4e 100644
--- a/libs/plugins/modifiercompiler.string_format.php
+++ b/libs/plugins/modifiercompiler.string_format.php
@@ -8,8 +8,8 @@
/**
* Smarty string_format modifier plugin
- * Type: modifier
- * Name: string_format
+ * Type: modifier
+ * Name: string_format
* Purpose: format strings via sprintf
*
* @link http://www.smarty.net/manual/en/language.modifier.string.format.php string_format (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.strip.php b/libs/plugins/modifiercompiler.strip.php
index 8173eed8..3b7ade5e 100644
--- a/libs/plugins/modifiercompiler.strip.php
+++ b/libs/plugins/modifiercompiler.strip.php
@@ -8,11 +8,11 @@
/**
* Smarty strip modifier plugin
- * Type: modifier
- * Name: strip
+ * Type: modifier
+ * Name: strip
* Purpose: Replace all repeated spaces, newlines, tabs
- * with a single space or supplied replacement string.
- * Example: {$var|strip} {$var|strip:" "}
+ * with a single space or supplied replacement string.
+ * Example: {$var|strip} {$var|strip:" "}
* Date: September 25th, 2002
*
* @link http://www.smarty.net/manual/en/language.modifier.strip.php strip (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.strip_tags.php b/libs/plugins/modifiercompiler.strip_tags.php
index af2c3911..5ddca7a9 100644
--- a/libs/plugins/modifiercompiler.strip_tags.php
+++ b/libs/plugins/modifiercompiler.strip_tags.php
@@ -8,8 +8,8 @@
/**
* Smarty strip_tags modifier plugin
- * Type: modifier
- * Name: strip_tags
+ * Type: modifier
+ * Name: strip_tags
* Purpose: strip html tags from text
*
* @link http://www.smarty.net/docs/en/language.modifier.strip.tags.tpl strip_tags (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.to_charset.php b/libs/plugins/modifiercompiler.to_charset.php
index fea8d827..88900571 100644
--- a/libs/plugins/modifiercompiler.to_charset.php
+++ b/libs/plugins/modifiercompiler.to_charset.php
@@ -8,8 +8,8 @@
/**
* Smarty to_charset modifier plugin
- * Type: modifier
- * Name: to_charset
+ * Type: modifier
+ * Name: to_charset
* Purpose: convert character encoding from internal encoding to $charset
*
* @author Rodney Rehm
diff --git a/libs/plugins/modifiercompiler.unescape.php b/libs/plugins/modifiercompiler.unescape.php
index 396ad7ea..5a94e072 100644
--- a/libs/plugins/modifiercompiler.unescape.php
+++ b/libs/plugins/modifiercompiler.unescape.php
@@ -8,8 +8,8 @@
/**
* Smarty unescape modifier plugin
- * Type: modifier
- * Name: unescape
+ * Type: modifier
+ * Name: unescape
* Purpose: unescape html entities
*
* @author Rodney Rehm
diff --git a/libs/plugins/modifiercompiler.upper.php b/libs/plugins/modifiercompiler.upper.php
index a083c4f7..d0d5cc7c 100644
--- a/libs/plugins/modifiercompiler.upper.php
+++ b/libs/plugins/modifiercompiler.upper.php
@@ -8,8 +8,8 @@
/**
* Smarty upper modifier plugin
- * Type: modifier
- * Name: lower
+ * Type: modifier
+ * Name: lower
* Purpose: convert string to uppercase
*
* @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual)
diff --git a/libs/plugins/modifiercompiler.wordwrap.php b/libs/plugins/modifiercompiler.wordwrap.php
index f5fb239c..94a0cf60 100644
--- a/libs/plugins/modifiercompiler.wordwrap.php
+++ b/libs/plugins/modifiercompiler.wordwrap.php
@@ -7,8 +7,8 @@
*/
/**
* Smarty wordwrap modifier plugin
- * Type: modifier
- * Name: wordwrap
+ * Type: modifier
+ * Name: wordwrap
* Purpose: wrap a string of text at a given length
*
* @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php wordwrap (Smarty online manual)
diff --git a/libs/plugins/shared.escape_special_chars.php b/libs/plugins/shared.escape_special_chars.php
index b68fe4b9..1d4c7284 100644
--- a/libs/plugins/shared.escape_special_chars.php
+++ b/libs/plugins/shared.escape_special_chars.php
@@ -8,7 +8,7 @@
/**
* escape_special_chars common function
- * Function: smarty_function_escape_special_chars
+ * Function: smarty_function_escape_special_chars
* Purpose: used by other smarty functions to escape
* special chars except for already escaped ones
*
diff --git a/libs/plugins/shared.make_timestamp.php b/libs/plugins/shared.make_timestamp.php
index 02881166..eb064607 100644
--- a/libs/plugins/shared.make_timestamp.php
+++ b/libs/plugins/shared.make_timestamp.php
@@ -7,7 +7,7 @@
*/
/**
- * Function: smarty_make_timestamp
+ * Function: smarty_make_timestamp
* Purpose: used by other smarty functions to make a timestamp from a string.
*
* @author Monte Ohrt