projects
/
GitHub
/
WoltLab
/
WCF.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e4bda35
)
Fix warnings about undefined classes
author
Matthias Schmidt
<gravatronics@live.com>
Sat, 21 May 2016 18:45:46 +0000
(20:45 +0200)
committer
Matthias Schmidt
<gravatronics@live.com>
Sat, 21 May 2016 18:45:46 +0000
(20:45 +0200)
wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php
patch
|
blob
|
blame
|
history
wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php
patch
|
blob
|
blame
|
history
diff --git
a/wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php
b/wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php
index e8d2cb2c4d007bde449287e3756107fe73798333..b47b14161489adfb8a1d56d58016fb0c9d105d72 100644
(file)
--- a/
wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php
+++ b/
wcfsetup/install/files/lib/data/TLegacyUserPropertyAccess.class.php
@@
-23,6
+23,7
@@
trait TLegacyUserPropertyAccess {
* @return mixed
*/
public function __get($name) {
+ /** @noinspection PhpUndefinedClassInspection */
$value = parent::__get($name);
if ($value !== null) {
return $value;
diff --git
a/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php
b/wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php
index a3c28b26b2dfae5d79718c7d824dab1bebb58b36..8b390352e6a7460f904abb61abf280a9996a74d1 100644
(file)
--- a/
wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php
+++ b/
wcfsetup/install/files/lib/system/html/input/node/HtmlInputNodeWoltlabMetacode.class.php
@@
-1,7
+1,6
@@
<?php
namespace wcf\system\html\input\node;
use wcf\system\html\metacode\converter\IMetacodeConverter;
-use wcf\system\html\metacode\converter\SimpleMetacodeConverter;
use wcf\system\html\node\AbstractHtmlNode;
use wcf\system\html\node\HtmlNodeProcessor;
use wcf\util\DOMUtil;