We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f561dd4 commit 56e4cd1Copy full SHA for 56e4cd1
Model/Section.php
@@ -132,11 +132,8 @@ final public function validate($data)
132
133
$result = $this->validateIDK($id, $k);
134
if (!$result) {
135
- $bId = 'B' . 'l' . 'o' . 'g';
136
- if ($id == $bId) {
137
- $id = $bId . 'Plus';
138
- $result = $this->validateIDK($id, $k);
139
- }
+ $id .= 'Plus';
+ $result = $this->validateIDK($id, $k);
140
}
141
142
return $result;
Model/UrlChecker.php
@@ -14,7 +14,7 @@ class UrlChecker
14
/**
15
* @return bool
16
*/
17
- public static function showUrl($url)
+ final public static function showUrl($url)
18
{
19
$url = (string)$url;
20
$info = parse_url($url);
0 commit comments