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:
4bef7e2
)
Add missing imports
author
Matthias Schmidt
<gravatronics@live.com>
Wed, 11 May 2016 18:21:28 +0000
(20:21 +0200)
committer
Matthias Schmidt
<gravatronics@live.com>
Wed, 11 May 2016 18:21:28 +0000
(20:21 +0200)
wcfsetup/install/files/lib/data/user/follow/UserFollowerList.class.php
patch
|
blob
|
blame
|
history
wcfsetup/install/files/lib/system/box/UserOnlineListBoxController.class.php
patch
|
blob
|
blame
|
history
wcfsetup/install/files/lib/system/label/object/ILabelObjectHandler.class.php
patch
|
blob
|
blame
|
history
diff --git
a/wcfsetup/install/files/lib/data/user/follow/UserFollowerList.class.php
b/wcfsetup/install/files/lib/data/user/follow/UserFollowerList.class.php
index b4e5c34417e084fc5f10e9ce2eaf02c752eec381..26dfb8626211e332c27c3422773eabc0c86fdab7 100644
(file)
--- a/
wcfsetup/install/files/lib/data/user/follow/UserFollowerList.class.php
+++ b/
wcfsetup/install/files/lib/data/user/follow/UserFollowerList.class.php
@@
-1,5
+1,6
@@
<?php
namespace wcf\data\user\follow;
+use wcf\data\user\User;
use wcf\data\user\UserProfile;
/**
diff --git
a/wcfsetup/install/files/lib/system/box/UserOnlineListBoxController.class.php
b/wcfsetup/install/files/lib/system/box/UserOnlineListBoxController.class.php
index 716a9ac95e463020a7abb2785f61db952a04344a..54503cd28fba3ec8171f3aa92c926582e5fdd382 100644
(file)
--- a/
wcfsetup/install/files/lib/system/box/UserOnlineListBoxController.class.php
+++ b/
wcfsetup/install/files/lib/system/box/UserOnlineListBoxController.class.php
@@
-1,6
+1,7
@@
<?php
namespace wcf\system\box;
use wcf\data\user\online\UsersOnlineList;
+use wcf\system\request\LinkHandler;
use wcf\system\WCF;
/**
diff --git
a/wcfsetup/install/files/lib/system/label/object/ILabelObjectHandler.class.php
b/wcfsetup/install/files/lib/system/label/object/ILabelObjectHandler.class.php
index 24ffba519b0dbeacfe30d5b3c77774bd26e7ae16..834f0e0232b5bb68e6e7c90e110b60de1c61a0a9 100644
(file)
--- a/
wcfsetup/install/files/lib/system/label/object/ILabelObjectHandler.class.php
+++ b/
wcfsetup/install/files/lib/system/label/object/ILabelObjectHandler.class.php
@@
-1,6
+1,7
@@
<?php
namespace wcf\system\label\object;
use wcf\data\label\group\ViewableLabelGroup;
+use wcf\data\label\Label;
/**
* Every label object handler has to implement this interface.