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  06787046969fdf5dcb203be63ae9e6838c9e3338 (commit)
      from  b861b9ab7755ed147a43a8672b476a072292b814 (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=06787046969fdf5dcb203be63ae9e6838c9e3338

commit 06787046969fdf5dcb203be63ae9e6838c9e3338
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Thu Jun 2 19:03:12 2016 +0200

    Whitespace

diff --git a/src/common/include/SysTasksQ.class.php 
b/src/common/include/SysTasksQ.class.php
index b3fd1ec..7ce99d6 100644
--- a/src/common/include/SysTasksQ.class.php
+++ b/src/common/include/SysTasksQ.class.php
@@ -44,7 +44,7 @@ class SysTasksQ extends FFError {
                }
                if (db_numrows($res) >= 1)
                        return true;
-               
+
                $res = db_query_params(
                        'INSERT INTO systasks (
                                plugin_id,
diff --git a/src/common/include/cron_utils.php 
b/src/common/include/cron_utils.php
index 5fc4911..64e86c5 100644
--- a/src/common/include/cron_utils.php
+++ b/src/common/include/cron_utils.php
@@ -111,7 +111,7 @@ function cron_release_lock($script) {
 //
 // Reload NSCD, in particular when replicating new groups, users or
 // project memberships
-// 
+//
 function cron_reload_nscd() {
         system("(nscd -i passwd && nscd -i group) >/dev/null 2>&1");
 }
@@ -124,21 +124,21 @@ function cron_regen_apache_auth() {
        # Reproduce nss_passwd on file, so we can work without mod-auth-*
        $passwd_fname = forge_get_config('data_path').'/scm-passwd';
        $passwd_f = fopen($passwd_fname.'.new', 'w');
-       
+
        # Enable /authscm/$user ITK URLs for FusionForge users only (not system 
users)
        $config_fname = forge_get_config('data_path').'/scm-auth.inc';
        $config_f = fopen($config_fname.'.new', 'w');
-       
+
        $res = db_query_params("SELECT login, passwd FROM nss_passwd WHERE 
status=$1", array('A'));
        while ($arr = db_fetch_array($res)) {
                fwrite($passwd_f, $arr['login'].':'.$arr['passwd']."\n");
                fwrite($config_f, 'Use ScmUser '.$arr['login']."\n");
        }
-       
+
        fclose($passwd_f);
        chmod($passwd_fname.'.new', 0644);
        rename($passwd_fname.'.new', $passwd_fname);
-       
+
        fclose($config_f);
        chmod($config_fname.'.new', 0644);
        rename($config_fname.'.new', $config_fname);
diff --git a/src/common/search/SearchQuery.class.php 
b/src/common/search/SearchQuery.class.php
index efcbbb4..cdfe707 100644
--- a/src/common/search/SearchQuery.class.php
+++ b/src/common/search/SearchQuery.class.php
@@ -216,7 +216,7 @@ class SearchQuery extends FFError {
 
        function fetchAllData() {
                $this->fetchDataUntil();
-       }          
+       }
 
        function getData($limit = NULL, $offset = 0) {
                if ($limit) {
diff --git a/src/common/tracker/views/form-addextrafield.php 
b/src/common/tracker/views/form-addextrafield.php
index 657b9d8..c241b19 100644
--- a/src/common/tracker/views/form-addextrafield.php
+++ b/src/common/tracker/views/form-addextrafield.php
@@ -98,7 +98,7 @@ if ($rows > 0) {
 echo "<h2>"._('Add New Custom Field')."</h2>";
 echo $HTML->openForm(array('action' => 
'/tracker/admin/?group_id='.$group_id.'&atid='.$ath->getID(), 'method' => 
'post'));
 echo html_ao('p');
-echo html_e('input', array('type'=>'hidden', 'name'=>'add_extrafield', 
'value'=>'y')); 
+echo html_e('input', array('type'=>'hidden', 'name'=>'add_extrafield', 
'value'=>'y'));
 
 echo html_e('strong', array(), _('Custom Field 
Name').utils_requiredField()._(':')).html_e('br');
 echo html_e('input', array('type'=>'text', 'name'=>'name', 'value'=>'', 
size=>'15', 'maxlength'=>'30', 'required'=>'required'));
diff --git a/src/common/tracker/views/form-workflow_required_fields.php 
b/src/common/tracker/views/form-workflow_required_fields.php
index 6b9ec52..2ff695c 100644
--- a/src/common/tracker/views/form-workflow_required_fields.php
+++ b/src/common/tracker/views/form-workflow_required_fields.php
@@ -77,7 +77,7 @@ echo $HTML->openForm(array('action' => 
'/tracker/admin/?group_id='.$group_id.'&a
                        $extra_fields_names[$key] = $row['field_name'];
                }
                array_multisort($extra_fields_names, SORT_ASC, 
SORT_LOCALE_STRING | SORT_FLAG_CASE, $extra_fields);
-               
+
                foreach ($extra_fields as $field) {
                        if ($field['field_type'] != 
ARTIFACT_EXTRAFIELDTYPE_STATUS) {
                                $value = in_array($field['extra_field_id'], 
$requiredFields)? ' checked="checked"' : '';
diff --git a/src/common/widget/Widget_ProjectInfo.class.php 
b/src/common/widget/Widget_ProjectInfo.class.php
index 25a3b0b..dfae299 100644
--- a/src/common/widget/Widget_ProjectInfo.class.php
+++ b/src/common/widget/Widget_ProjectInfo.class.php
@@ -34,7 +34,7 @@ class Widget_ProjectInfo extends Widget {
 
        public function getContent() {
                $result = '';
-               
+
                $request =& HTTPRequest::instance();
                $group_id = $request->get('group_id');
                $pm = ProjectManager::instance();
diff --git a/src/common/widget/Widget_ProjectLatestFileReleases.class.php 
b/src/common/widget/Widget_ProjectLatestFileReleases.class.php
index 4cee776..75d73e4 100644
--- a/src/common/widget/Widget_ProjectLatestFileReleases.class.php
+++ b/src/common/widget/Widget_ProjectLatestFileReleases.class.php
@@ -44,7 +44,7 @@ class Widget_ProjectLatestFileReleases extends Widget {
 
        function getContent() {
                $result = '';
-               
+
                $request =& HTTPRequest::instance();
                $pm = ProjectManager::instance();
                $group_id = $request->get('group_id');

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

Summary of changes:
 src/common/include/SysTasksQ.class.php                       |  2 +-
 src/common/include/cron_utils.php                            | 10 +++++-----
 src/common/search/SearchQuery.class.php                      |  2 +-
 src/common/tracker/views/form-addextrafield.php              |  2 +-
 src/common/tracker/views/form-workflow_required_fields.php   |  2 +-
 src/common/widget/Widget_ProjectInfo.class.php               |  2 +-
 src/common/widget/Widget_ProjectLatestFileReleases.class.php |  2 +-
 7 files changed, 11 insertions(+), 11 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