This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, master has been updated
       via  982e191cbbb3607e806ae3a9fe783deec729c14b (commit)
       via  d9c84105bbef5f264d121471104ba471fd7b9cd2 (commit)
      from  a6a5c74d38e2a9f11290777bb7920de0d99b8598 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=982e191cbbb3607e806ae3a9fe783deec729c14b

commit 982e191cbbb3607e806ae3a9fe783deec729c14b
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Wed Mar 15 15:48:59 2017 +0100

    Less strings

diff --git a/src/plugins/taskboard/common/actions/trackers.php 
b/src/plugins/taskboard/common/actions/trackers.php
index edc8371..af00090 100644
--- a/src/plugins/taskboard/common/actions/trackers.php
+++ b/src/plugins/taskboard/common/actions/trackers.php
@@ -49,7 +49,7 @@ if (getStringFromRequest('post_changes')) {
        if(!$ret) {
                $error_msg = $taskboard->getErrorMessage();
        } else {
-               $feedback = _('Success on something here');
+               $feedback = _('Successfully Updated');
        }
 }
 
diff --git a/src/www/reporting/customstatus.php 
b/src/www/reporting/customstatus.php
index 044b157..7a4b4bd 100644
--- a/src/www/reporting/customstatus.php
+++ b/src/www/reporting/customstatus.php
@@ -51,7 +51,7 @@ if (getStringFromRequest('submit')) {
                if (!$r->updateStatusID($status_id,$status_name)) {
                        $error_msg = $r->getErrorMessage();
                } else {
-                       $feedback = _('Update Successful');
+                       $feedback = _('Successfully Updated');
                }
 
                $status_id=false;
diff --git a/src/www/reporting/timecategory.php 
b/src/www/reporting/timecategory.php
index 13a689b..b44648d 100644
--- a/src/www/reporting/timecategory.php
+++ b/src/www/reporting/timecategory.php
@@ -50,7 +50,7 @@ if (getStringFromRequest('submit')) {
                if (!$r->updateTimeCode($time_code,$category_name)) {
                        $error_msg = $r->getErrorMessage();
                } else {
-                       $feedback = _('Update Successful');
+                       $feedback = _('Successfully Updated');
                }
 
                $time_code=false;
diff --git a/src/www/survey/admin/question.php 
b/src/www/survey/admin/question.php
index 502f2e1..1487776 100644
--- a/src/www/survey/admin/question.php
+++ b/src/www/survey/admin/question.php
@@ -83,7 +83,7 @@ if (getStringFromRequest('delete')=="Y" && $question_id) {
        /* Modification */
        if ($question_id) {
                $sq->update($question, $question_type);
-               $msg = _('Update Successful');
+               $msg = _('Successfully Updated');
        } else { /* adding new question */
                $question = getStringFromRequest('question');
                if (!form_key_is_valid(getStringFromRequest('form_key'))) {
diff --git a/src/www/survey/admin/survey.php b/src/www/survey/admin/survey.php
index e5f91df..44fdfbe 100644
--- a/src/www/survey/admin/survey.php
+++ b/src/www/survey/admin/survey.php
@@ -68,7 +68,7 @@ if (getStringFromRequest('post')=="Y") {
 
        if ($survey_id) { /* Modify */
                $s->update($survey_title, $to_add, $to_del, $is_active);
-               $feedback = _('Update Successful');
+               $feedback = _('Successfully Updated');
        }  else {  /* Add */
                $s->create($survey_title, $to_add, $is_active);
                $feedback = _('Survey Added');
@@ -80,7 +80,7 @@ if (getStringFromRequest('updown')=="Y") {
        $question_id = getIntFromRequest('question_id');
        $is_up = getStringFromRequest('is_up');
        $s->updateOrder($question_id, $is_up);
-       $feedback = _('Update Successful');
+       $feedback = _('Successfully Updated');
 }
 
 /* Error on previous transactions? */

https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=d9c84105bbef5f264d121471104ba471fd7b9cd2

commit d9c84105bbef5f264d121471104ba471fd7b9cd2
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Wed Mar 15 15:46:33 2017 +0100

    Whitespace

diff --git a/src/common/tracker/views/form-extrafieldcopy.php 
b/src/common/tracker/views/form-extrafieldcopy.php
index 8cddd7b..ae22ac6 100644
--- a/src/common/tracker/views/form-extrafieldcopy.php
+++ b/src/common/tracker/views/form-extrafieldcopy.php
@@ -32,10 +32,10 @@ $fb= new ArtifactExtraField($ath,$id);
 
 // Get a list of all extra fields in trackers and groups that you have perms 
to admin
 
-$project_ids = array () ;
+$project_ids = array();
 foreach (session_get_user()->getGroups() as $p) {
        if (forge_check_perm ('tracker_admin', $p->getID())) {
-               $project_ids[] = $p->getID() ;
+               $project_ids[] = $p->getID();
        }
 }
 

-----------------------------------------------------------------------

Summary of changes:
 src/common/tracker/views/form-extrafieldcopy.php  | 4 ++--
 src/plugins/taskboard/common/actions/trackers.php | 2 +-
 src/www/reporting/customstatus.php                | 2 +-
 src/www/reporting/timecategory.php                | 2 +-
 src/www/survey/admin/question.php                 | 2 +-
 src/www/survey/admin/survey.php                   | 4 ++--
 6 files changed, 8 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to