Ignore:
Timestamp:
Sep 12, 2008, 4:17:35 AM (16 years ago)
Author:
rvelices
Message:
  • images.file categories.permalink old_permalinks.permalink - become binary
  • session security improvement: now the sessions are valid only for originating ip addr (with mask 255.255.0.0 to allow users behind load balancing proxies) -> stealing the session cookie is almost a non issue (with the exception of the 65536 machines in range)
  • metadata sync from the sync button does not overwrite valid data with empty metadata
  • other small fixes/enhancements:
    • added event get_category_image_orders
    • fix display issue with redirect.tpl (h1/h2 within h1)
    • fix known_script smarty function registration
    • query search form not submitted if q is empty
    • better admin css rules
    • some other minor changes (ws_core, rest_handler, functions_search...)
File:
1 edited

Legend:

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

    r2513 r2521  
    6363    $this->smarty->register_modifier( 'explode', array('Template', 'mod_explode') );
    6464    $this->smarty->register_block('html_head', array(&$this, 'block_html_head') );
    65     $this->smarty->register_function('known_script', array(&$this, 'func_known_script'), false );
     65    $this->smarty->register_function('known_script', array(&$this, 'func_known_script') );
    6666    $this->smarty->register_prefilter( array('Template', 'prefilter_white_space') );
    6767    if ( $conf['compiled_template_cache_language'] )
Note: See TracChangeset for help on using the changeset viewer.