]> git.mxchange.org Git - friendica.git/blobdiff - mod/cal.php
Features to src
[friendica.git] / mod / cal.php
index 170e7ea4c2f44dc55a8383f037b41280bdd1a4be..4ee2efd5845e1f8163ef852396080a5233ff5e3d 100644 (file)
@@ -5,8 +5,8 @@
  *     This calendar is for profile visitors and contains only the events
  *     of the profile owner
  */
-
 use Friendica\App;
+use Friendica\Content\Features;
 use Friendica\Core\Config;
 use Friendica\Core\PConfig;
 use Friendica\Core\System;
@@ -301,7 +301,7 @@ function cal_content(App $a) {
 
                // Test permissions
                // Respect the export feature setting for all other /cal pages if it's not the own profile
-               if( ((local_user() !== intval($owner_uid))) && ! feature_enabled($owner_uid, "export_calendar")) {
+               if( ((local_user() !== intval($owner_uid))) && ! Features::isEnabled($owner_uid, "export_calendar")) {
                        notice( t('Permission denied.') . EOL);
                        goaway('cal/' . $nick);
                }