Development

Changeset 7441

You must first sign up to be able to contribute.

Changeset 7441

Show
Ignore:
Timestamp:
02/09/08 20:54:28 (10 months ago)
Author:
fabien
Message:

reverted r7440 (size if for the text, a section must have 9 characters at a maximum for best alignment in the output)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.1/lib/command/sfFormatter.class.php

    r7440 r7441  
    5050  public function formatSection($section, $text, $size = null) 
    5151  { 
    52     return sprintf(">> %-${size}s %s", $section, $this->excerpt($text, $size)); 
     52    return sprintf(">> %-$9s %s", $section, $this->excerpt($text, $size)); 
    5353  } 
    5454