Changeset 19954 for lang/php

Show
Ignore:
Timestamp:
09/26/08 16:18:33 (2 months ago)
Author:
nowelium
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/misc/Hermit/src/Hermit/statement/HermitStatementBuilder.php

    r19902 r19954  
    55 */ 
    66abstract class HermitStatementBuilder { 
    7     const REGEX = '/(\/\*(\w+)\*\/)((\'|")(\w+)(\'|"))?/m'; 
     7    const REGEX = '/(\/\*([^\*\/]*)\*\/)(\w+|((\'|")([^(\'|")]*)(\'|")))?/m'; 
    88    public static function prepare(PDO $pdo, ReflectionMethod $method, $sql){ 
    99        $parameterType = self::createParameterType($method); 
     
    4343    } 
    4444} 
    45