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  51871826faa1fd527d545be859169348c2ff22ed (commit)
       via  37c6436673d6f5990eb51932beefefaf3479105c (commit)
       via  d3cfd94cba4ef1024de7fe7bce163000431d0adb (commit)
       via  5fe1f5ac429a5ed15ddbeca4ace83c6e01e1a70c (commit)
      from  06ab3b1896870d0f7dec2431ea74a9b8e40931b6 (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=51871826faa1fd527d545be859169348c2ff22ed

commit 51871826faa1fd527d545be859169348c2ff22ed
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Thu Jun 9 18:26:32 2016 +0200

    No need to pass feedback in URL

diff --git a/src/www/admin/groupdelete.php b/src/www/admin/groupdelete.php
index a7a0454..fbe8b5b 100644
--- a/src/www/admin/groupdelete.php
+++ b/src/www/admin/groupdelete.php
@@ -45,7 +45,7 @@ if (getStringFromPost('submit')) {
                exit_error($group->getErrorMessage(), 'admin');
        } else {
                $feedback = _('Project successfully deleted');
-               session_redirect('/admin/?feedback='.urlencode($feedback));
+               session_redirect('/admin/');
        }
 }
 

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

commit 37c6436673d6f5990eb51932beefefaf3479105c
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Thu Jun 9 18:25:40 2016 +0200

    Factor code

diff --git a/src/common/account/actions/deletesshkey.php 
b/src/common/account/actions/deletesshkey.php
index 8020346..6d9c35d 100644
--- a/src/common/account/actions/deletesshkey.php
+++ b/src/common/account/actions/deletesshkey.php
@@ -26,10 +26,8 @@ $keyid = getStringFromRequest('keyid');
 if (is_numeric($keyid)) {
        if (!$u->deleteAuthorizedKey($keyid)) {
                $error_msg = $u->getErrorMessage();
-               session_redirect('/account/');
+       } else {
+               $feedback = _('SSH Key deleted successfully.');
        }
-       $feedback = _('SSH Key deleted successfully.');
-       session_redirect('/account/');
 }
-
 session_redirect('/account/');

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

commit d3cfd94cba4ef1024de7fe7bce163000431d0adb
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Thu Jun 9 17:40:59 2016 +0200

    Add default values

diff --git a/src/common/tracker/ArtifactQuery.class.php 
b/src/common/tracker/ArtifactQuery.class.php
index 04ddf8f..1574ce8 100644
--- a/src/common/tracker/ArtifactQuery.class.php
+++ b/src/common/tracker/ArtifactQuery.class.php
@@ -134,7 +134,7 @@ class ArtifactQuery extends FFError {
         * @return      bool            true on success / false on failure.
         */
        function 
create($name,$status,$assignee,$moddaterange,$sort_col,$sort_ord,$extra_fields,$opendaterange=0,$closedaterange=0,
-               
$summary,$description,$followups,$query_type=0,$query_options=array(),$submitter='')
 {
+               
$summary='',$description='',$followups='',$query_type=0,$query_options=array(),$submitter='')
 {
                //
                //      data validation
                //

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

commit 5fe1f5ac429a5ed15ddbeca4ace83c6e01e1a70c
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Thu Jun 9 17:40:39 2016 +0200

    Whitespace

diff --git a/src/common/tracker/RoadmapFactory.class.php 
b/src/common/tracker/RoadmapFactory.class.php
index 0088138..fd4cf9d 100644
--- a/src/common/tracker/RoadmapFactory.class.php
+++ b/src/common/tracker/RoadmapFactory.class.php
@@ -60,7 +60,7 @@ class RoadmapFactory extends FFError {
                if (!$group || !is_object($group)) {
                        $this->setError(_('No Valid Group Object'));
                        return;
-               }
+               }
                if ($group->isError()) {
                        $this->setError('RoadmapFactory: 
'.$group->getErrorMessage());
                        return;

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

Summary of changes:
 src/common/account/actions/deletesshkey.php | 6 ++----
 src/common/tracker/ArtifactQuery.class.php  | 2 +-
 src/common/tracker/RoadmapFactory.class.php | 2 +-
 src/www/admin/groupdelete.php               | 2 +-
 4 files changed, 5 insertions(+), 7 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