diff --git a/inc/actions.php b/inc/actions.php
index 2b5fa7ace6812e401cec8e23ed2ca3e54a67bf03..d17b975d79e1f27d1097c8e41145fd775b1b1237 100644
--- a/inc/actions.php
+++ b/inc/actions.php
@@ -53,6 +53,8 @@ function act_dispatch(){
   
   //update user profile
   if (($ACT == 'profile') && updateprofile()) {
+    msg($lang['profchanged'],1);
+    $ACT = 'show';
   }
   
   //save
diff --git a/inc/html.php b/inc/html.php
index 41272b17f9d97e53a77415add59a2ae56f76091e..74047035becc1f5b679cb8a531f356ce9746b501 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -903,7 +903,7 @@ function html_updateprofile(){
     </label><br />
     <?php } ?>
     
-    <input type="submit" class="button" value="<?php echo $lang['btn_profile']?>" />
+    <input type="submit" class="button" value="<?php echo $lang['btn_save']?>" />
     <input type="reset" class="button" value="<?php echo $lang['btn_reset']?>" />
   </fieldset>
   </form>
diff --git a/inc/lang/de/lang.php b/inc/lang/de/lang.php
index a62175837ae907274a45e43bb61ba6add8eb2fbc..733f8caf50659a12099f29d61d23e67b402977cf 100644
--- a/inc/lang/de/lang.php
+++ b/inc/lang/de/lang.php
@@ -69,6 +69,7 @@ $lang['reghere']    = 'Sie haben noch keinen Zugang? Hier anmelden';
 $lang['profna']       = 'Änderung des Benutzerprofils in diesem Wiki nicht möglich.';
 $lang['profnochange'] = 'Keine Änderungen, nichts zu tun.';
 $lang['profnoempty']  = 'Es muß ein Name und eine E-Mail Adresse angegeben werden.';
+$lang['profchanged']  = 'Benuzerprofil erfolgreich geändert.';
 
 $lang['pwdforget']    = 'Passwort vergessen? Kein Problem';
 $lang['resendna']      = 'Passwörter versenden ist in diesem Wiki nicht möglich.';
diff --git a/inc/lang/en/lang.php b/inc/lang/en/lang.php
index d686f0c231cecbf629a2cf54aa81dc7b884e1e2a..3642038dc205a6c7cb00be739b0b9a0d726e6204 100644
--- a/inc/lang/en/lang.php
+++ b/inc/lang/en/lang.php
@@ -67,6 +67,7 @@ $lang['reghere']    = 'You don\'t have an account yet? Just get one';
 $lang['profna']       = 'This wiki does not support profile modification';
 $lang['profnochange'] = 'No changes, nothing to do.';
 $lang['profnoempty']  = 'An empty name or email address is not allowed.';
+$lang['profchanged']  = 'User profile sucessfully updated.';
 
 $lang['pwdforget'] = 'Forgotten your password? Get a new one';
 $lang['resendna']  = 'This wiki does not support password resending.';