Development

Changeset 5979

You must first sign up to be able to contribute.

Changeset 5979

Show
Ignore:
Timestamp:
11/12/07 11:06:05 (6 years ago)
Author:
fabien
Message:

sfMediaLibraryPlugin: fixed input_asset_tag requires i18n helper (closes #2171)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfMediaLibraryPlugin/README

    r5977 r5979  
    152152=== Trunk === 
    153153 
     154 * fabien: fixed input_asset_tag requires i18n helper (#2171) 
    154155 * fabien: Added it, de and nl translations (#2036, #2055, #2194) 
    155156 * fabien: Cleaned up a bit the templates 
  • plugins/sfMediaLibraryPlugin/lib/helper/sfMediaLibraryHelper.php

    r4822 r5979  
    1919function input_asset_tag($name, $value, $options = array()) 
    2020{ 
    21   use_helper('Javascript'); 
     21  use_helper('Javascript', 'I18N'); 
    2222 
    2323  $type = 'all'; 
  • plugins/sfMediaLibraryPlugin/modules/sfMediaLibrary/templates/renameSuccess.php

    r3858 r5979  
    22 
    33<?php include_partial('sfMediaLibrary/block', array( 
    4   'name' => $name, 
    5   'current_path' => $currentDir, 
     4  'name'                 => $name, 
     5  'current_path'         => $currentDir, 
    66  'web_abs_current_path' => $webAbsCurrentDir, 
    7   'type' => $type, 
    8   'info' => $info, 
    9   'count' => $count, 
     7  'type'                 => $type, 
     8  'info'                 => $info, 
     9  'count'                => $count, 
    1010)) ?>