X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fvideos.php;h=e00df10a24b48d171fa05287c7456b86875a795d;hb=92c4ca091193e571d76a9db7b2d4078e2b3dc473;hp=fcdd96d09c0a3e9405e0737905ed7b8168b413a7;hpb=47c2565917bb0f190ef9374d261e538c424b210c;p=friendica.git diff --git a/mod/videos.php b/mod/videos.php index fcdd96d09c..e00df10a24 100644 --- a/mod/videos.php +++ b/mod/videos.php @@ -274,6 +274,7 @@ function videos_content(App $a) // perhaps they're visiting - but not a community page, so they wouldn't have write access if (remote_user() && (!$visitor)) { $contact_id = 0; + if (!empty($_SESSION['remote'])) { foreach($_SESSION['remote'] as $v) { if($v['uid'] == $owner_uid) { @@ -366,11 +367,12 @@ function videos_content(App $a) foreach ($r as $rr) { $alt_e = $rr['filename']; /// @todo The album isn't part of the above query. This seems to be some unfinished code that needs to be reworked completely. + $rr['album'] = ''; $name_e = $rr['album']; $videos[] = [ 'id' => $rr['id'], - 'link' => System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/video/' . $rr['resource-id'], + 'link' => System::baseUrl() . '/videos/' . $a->data['user']['nickname'] . '/video/' . $rr['hash'], 'title' => L10n::t('View Video'), 'src' => System::baseUrl() . '/attach/' . $rr['id'] . '?attachment=0', 'alt' => $alt_e,