Changeset 2963 for trunk/manual/lib

Show
Ignore:
Timestamp:
10/21/07 07:23:59 (15 months ago)
Author:
jwage
Message:

Mass search and replace for coding standards changes, doc block formatting, and code spacing.

Location:
trunk/manual/lib
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/manual/lib/highlight.php

    r2015 r2963  
    3232 * @link        http://aidanlister.com/repos/v/PHP_Highlight.php 
    3333 */ 
    34 if (!defined('T_ML_COMMENT')) { 
     34if ( ! defined('T_ML_COMMENT')) { 
    3535   define('T_ML_COMMENT', T_COMMENT); 
    3636} else { 
  • trunk/manual/lib/Text/Wiki/Parse/Doc/Code.php

    r2015 r2963  
    5050    */ 
    5151    var $regex = ';^<code(\s[^>]*)?>(?:\s*)(.*?)(?:\s*)</code>(\s|$);msi'; 
    52      
     52 
    5353    /** 
    5454    *  
     
    8181                 
    8282                // ... and make sure we have a 'type' 
    83                 if (! isset($attr['type'])) { 
     83                if ( ! isset($attr['type'])) { 
    8484                        $attr['type'] = ''; 
    8585                }