Development

Changeset 27816

You must first sign up to be able to contribute.

Changeset 27816

Show
Ignore:
Timestamp:
02/10/10 16:46:46 (3 years ago)
Author:
FabianLange
Message:

[1.2, 1.3, 1.4] fixed invalid sprintf syntax in exception (closes #8256)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.2/lib/task/sfFilesystem.class.php

    r14523 r27816  
    183183    if (is_readable($target)) 
    184184    { 
    185       throw new sfException(sprintf('Cannot rename because the target "%" already exist.', $target)); 
     185      throw new sfException(sprintf('Cannot rename because the target "%s" already exist.', $target)); 
    186186    } 
    187187 
  • branches/1.3/lib/task/sfFilesystem.class.php

    r27751 r27816  
    183183    if (is_readable($target)) 
    184184    { 
    185       throw new sfException(sprintf('Cannot rename because the target "%" already exist.', $target)); 
     185      throw new sfException(sprintf('Cannot rename because the target "%s" already exist.', $target)); 
    186186    } 
    187187 
  • branches/1.4/lib/task/sfFilesystem.class.php

    r27751 r27816  
    183183    if (is_readable($target)) 
    184184    { 
    185       throw new sfException(sprintf('Cannot rename because the target "%" already exist.', $target)); 
     185      throw new sfException(sprintf('Cannot rename because the target "%s" already exist.', $target)); 
    186186    } 
    187187