@@ -40,11 +40,11 @@ |
||
| 40 | 40 | */ |
| 41 | 41 | protected function compileValidPattern() |
| 42 | 42 | { |
| 43 | - self::$valid_pattern = '/^([\/\?' . |
|
| 44 | - $this->unreserved_pattern . |
|
| 45 | - $this->sub_delims_pattern . |
|
| 46 | - ']|' . //predefined patterns or percent-encoding |
|
| 47 | - $this->pct_encoded_pattern . |
|
| 43 | + self::$valid_pattern = '/^([\/\?'. |
|
| 44 | + $this->unreserved_pattern. |
|
| 45 | + $this->sub_delims_pattern. |
|
| 46 | + ']|'.//predefined patterns or percent-encoding |
|
| 47 | + $this->pct_encoded_pattern. |
|
| 48 | 48 | ')*$/'; |
| 49 | 49 | } |
| 50 | 50 | |