fix for accessing non object

This commit is contained in:
Florin Peter 2013-05-11 00:22:58 +02:00
parent 3eae26143f
commit dc8164a3f0
1 changed files with 2 additions and 1 deletions

View File

@ -1243,13 +1243,14 @@ class Share {
'token' => $token,
'run' => $run
);
$run = \OC_Hook::emit(
'OCP\Share'
, 'pre_shared'
, $params
);
// If hook execution didn't encounter errors
if ( $run !== false && !$run->run ) {
if ( isset($run->run) && !$run->run ) {
$message = 'Sharing '.$itemSource.' failed, because pre share hooks failed';
\OC_Log::write('OCP\Share', $message, \OC_Log::ERROR);
return false;