diff options
-rw-r--r-- | app/events.apd | 4 | ||||
-rw-r--r-- | app/photos.apd | 4 | ||||
-rw-r--r-- | include/apps.php | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/app/events.apd b/app/events.apd new file mode 100644 index 000000000..4f832ab18 --- /dev/null +++ b/app/events.apd @@ -0,0 +1,4 @@ +url: $baseurl/events +requires: local_user +name: Events + diff --git a/app/photos.apd b/app/photos.apd new file mode 100644 index 000000000..de0e60096 --- /dev/null +++ b/app/photos.apd @@ -0,0 +1,4 @@ +url: $baseurl/photos/$nick +requires: local_user +name: Photos + diff --git a/include/apps.php b/include/apps.php index f6c09d803..ced337e71 100644 --- a/include/apps.php +++ b/include/apps.php @@ -96,7 +96,7 @@ function parse_app_description($f) { function translate_system_apps(&$arr) { $apps = array( 'Matrix' => t('Matrix'), 'Channel Home' => t('Channel Home'), 'Profile' => t('Profile'), - 'Photos' => t('Photos') + 'Photos' => t('Photos'), 'Events' => t('Events') ); |