PluginProbe
WebTotem Security / 2.3.14
WebTotem Security v2.3.14
3.0.1 3.0.0 trunk 1.0 1.1 1.2 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.1 2.2.2 2.2.3 2.2.4 All 109 releases
← All changes | library/Request.php +1 -1 2.02.3.14 View file →
@@ -31,9 +31,9 @@
31 31 }
32 32
33 33 public function __get($name)
34 34 {
35 - if (!is_null($this->request) && array_key_exists($name, $this->request)) {
35 + if (!is_null($this->request) && property_exists($this->request, $name)) {
36 36 return $this->request->$name;
37 37 }
38 38 if (isset($this->$name)) {
39 39 return $this->$name;