Changeset 2770

Show
Ignore:
Timestamp:
07/14/08 19:57:50 (2 months ago)
Author:
bchoate
Message:

Encoding blog name for backup progress messaging.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/release-41/lib/MT/CMS/Tools.pm

    r2600 r2770  
    10171017                $app->translate( 
    10181018                    "Changing Site Path for the blog '[_1]' (ID:[_2])...", 
    1019                     $blog->name, $blog->id 
     1019                    encode_html( $blog->name ), $blog->id 
    10201020                ) 
    10211021            ); 
     
    10251025                $app->translate( 
    10261026                    "Removing Site Path for the blog '[_1]' (ID:[_2])...", 
    1027                     $blog->name, $blog->id 
     1027                    encode_html( $blog->name ), $blog->id 
    10281028                ) 
    10291029            ); 
     
    10421042                  . $app->translate( 
    10431043                    "Changing Archive Path for the blog '[_1]' (ID:[_2])...", 
    1044                     $blog->name, $blog->id 
     1044                    encode_html( $blog->name ), $blog->id 
    10451045                  ) 
    10461046            ); 
     
    10511051                  . $app->translate( 
    10521052                    "Removing Archive Path for the blog '[_1]' (ID:[_2])...", 
    1053                     $blog->name, $blog->id 
     1053                    encode_html( $blog->name ), $blog->id 
    10541054                  ) 
    10551055            ); 
     
    10971097                $app->translate( 
    10981098                    "Changing file path for the asset '[_1]' (ID:[_2])...", 
    1099                     $asset->label, $asset->id 
     1099                    encode_html( $asset->label ), $asset->id 
    11001100                ) 
    11011101            );