Changeset 2536


Ignore:
Timestamp:
Sep 14, 2008, 9:40:12 PM (16 years ago)
Author:
nikrou
Message:

real static param

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/template.class.php

    r2521 r2536  
    305305   * language
    306306   */
    307   /*static*/ function mod_translate($text)
     307  static function mod_translate($text)
    308308  {
    309309    return l10n($text);
     
    314314   * 'Yes;No'|@explode:';' -> array('Yes', 'No')
    315315   */
    316   /*static*/ function mod_explode($text, $delimiter=',')
     316  static function mod_explode($text, $delimiter=',')
    317317  {
    318318    return explode($delimiter, $text);
     
    372372  }
    373373
    374   /*static */ function prefilter_white_space($source, &$smarty)
     374  static function prefilter_white_space($source, &$smarty)
    375375  {
    376376    $ld = $smarty->left_delimiter;
     
    399399   * from templates.
    400400   */
    401   /*static */ function prefilter_language($source, &$smarty)
     401  static function prefilter_language($source, &$smarty)
    402402  {
    403403    global $lang;
Note: See TracChangeset for help on using the changeset viewer.