Development

Changeset 8947

You must first sign up to be able to contribute.

Changeset 8947

Show
Ignore:
Timestamp:
05/14/08 11:18:41 (5 months ago)
Author:
fabien
Message:

fixed typo (closes #3534)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/task/generator/sfGenerateTaskTask.class.php

    r8514 r8947  
    6565 
    6666    // Validate the class name 
    67     if (!preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', $app)) 
     67    if (!preg_match('/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*$/', $taskClassName)) 
    6868    { 
    69       throw new sfCommandException(sprintf('The task class name "%s" is invalid.', $app)); 
     69      throw new sfCommandException(sprintf('The task class name "%s" is invalid.', $taskClassName)); 
    7070    } 
    7171