diff --git a/boot.php b/boot.php index f1e0290110..54b34416f6 100644 --- a/boot.php +++ b/boot.php @@ -2,7 +2,7 @@ set_time_limit(0); -define ( 'FRIENDIKA_VERSION', '2.1.929' ); +define ( 'FRIENDIKA_VERSION', '2.1.931' ); define ( 'DFRN_PROTOCOL_VERSION', '2.1' ); define ( 'DB_UPDATE_VERSION', 1045 ); diff --git a/mod/friendika.php b/mod/friendika.php new file mode 100644 index 0000000000..4a8240a11b --- /dev/null +++ b/mod/friendika.php @@ -0,0 +1,47 @@ +Friendika'; + + + $o .= '

'; + + $o .= 'View License' . '

'; + $o .= t('This is Friendika version') . ' ' . FRIENDIKA_VERSION . ' '; + $o .= t('running at web location') . ' ' . $a->get_baseurl() . '

'; + + $o .= t('Shared content within the Friendika network is provided under the Creative Commons Attribution 3.0 license') . '

'; + + $o .= t('Please visit Project.Friendika.com to learn more about the Friendika project.') . '

'; + + $o .= t('Bug reports and issues: please visit') . ' ' . 'Bugs.Friendika.com

'; + $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendika - dot com') . '

'; + + $o .= '

'; + + if(count($a->plugins)) { + $o .= '

' . t('Installed plugins/addons/apps') . '

'; + $o .= ''; + } + else + $o .= '

' . t('No installed plugins/addons/apps'); + + return $o; + + + + + + + + + + + +} \ No newline at end of file