Subversion Repositories PHPX

Rev

Rev 2 | Rev 4 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 3
Line 262... Line 262...
262
        }
262
        }
263
       
263
       
264
        /* DEBUG */
264
        /* DEBUG */
265
        // echo " $impl=$thisImplVer ";
265
        // echo " $impl=$thisImplVer ";
266
       
266
       
267
        if ($thisImplVer === '-' || $thisImplVer > $safeVer)
267
        if (preg_match('/^-?$/', $thisImplVer) || $thisImplVer > $safeVer)
268
        {
268
        {
269
          return '';
269
          return '';
270
        }
270
        }
271
      }
271
      }
272
     
272