diff --git a/boot.php b/boot.php
index 20abdde50..f3c8db394 100644
--- a/boot.php
+++ b/boot.php
@@ -15,7 +15,8 @@ require_once('update.php');
require_once('include/dbstructure.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
-define ( 'FRIENDICA_VERSION', '3.3rc' );
+define ( 'FRIENDICA_CODENAME', 'Ginger');
+define ( 'FRIENDICA_VERSION', '3.3' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1173 );
define ( 'EOL', "
\r\n" );
diff --git a/mod/admin.php b/mod/admin.php
index dff8ee156..12ab2bea5 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -223,6 +223,8 @@ function admin_page_summary(&$a) {
'$accounts' => $accounts,
'$pending' => Array( t('Pending registrations'), $pending),
'$version' => Array( t('Version'), FRIENDICA_VERSION),
+ '$platform' => FRIENDICA_PLATFORM,
+ '$codename' => FRIENDICA_CODENAME,
'$build' => get_config('system','build'),
'$plugins' => Array( t('Active plugins'), $a->plugins )
));
diff --git a/view/templates/admin_summary.tpl b/view/templates/admin_summary.tpl
index 3039e4913..aaa8c9540 100644
--- a/view/templates/admin_summary.tpl
+++ b/view/templates/admin_summary.tpl
@@ -34,7 +34,7 @@