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  e60006d30ff4a6c56d467789621fbcae414d6819 (commit)
      from  8b00dacf337f9ce18275e13f1777f6ff7f8c4ec1 (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=e60006d30ff4a6c56d467789621fbcae414d6819

commit e60006d30ff4a6c56d467789621fbcae414d6819
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Tue Jul 5 12:41:24 2016 +0200

    Add modal in headers

diff --git a/src/common/tracker/actions/add.php 
b/src/common/tracker/actions/add.php
index 55dcbfe..1998eb9 100644
--- a/src/common/tracker/actions/add.php
+++ b/src/common/tracker/actions/add.php
@@ -28,7 +28,7 @@
 global $group;
 global $ath;
 
-$ath->header(array ('title'=>_('Submit New')));
+$ath->header(array ('title'=>_('Submit New'), 'modal' => 1));
 
 require_once $gfcommon.'tracker/include/build_submission_form.php';
 if (isset($summary)) {
diff --git a/src/common/tracker/actions/admin-tracker.php 
b/src/common/tracker/actions/admin-tracker.php
index ee069c1..3d53487 100644
--- a/src/common/tracker/actions/admin-tracker.php
+++ b/src/common/tracker/actions/admin-tracker.php
@@ -28,7 +28,8 @@ global $ath;
 //
 //  SHOW LINKS TO FUNCTIONS
 //
-$ath->header(array ('title'=>_('Administration of tracker')._(': 
').$ath->getName()));
+$ath->header(array ('title'=>_('Administration of tracker')._(': 
').$ath->getName(),
+       'modal' => 1));
 
 echo '<p>';
 echo util_make_link('/tracker/admin/?group_id='.$group_id, '<strong>'._('New 
Tracker').'</strong>');
diff --git a/src/common/tracker/actions/deleteartifact.php 
b/src/common/tracker/actions/deleteartifact.php
index 9bca6f1..c7ffc7d 100644
--- a/src/common/tracker/actions/deleteartifact.php
+++ b/src/common/tracker/actions/deleteartifact.php
@@ -31,7 +31,8 @@ global $atid;
 global $HTML;
 
 $ath->header(array ('title'=>_('Delete artifact').': [#'. $ah->getID(). '] ' . 
$ah->getSummary(),
-                                       'atid'=>$ath->getID()));
+                   'atid'=>$ath->getID(),
+                   'modal'=>1));
 
 // $atid, $aid and $group_id are set in tracker.php
 
diff --git a/src/common/tracker/actions/format_csv.php 
b/src/common/tracker/actions/format_csv.php
index 0cec9a5..5f3de88 100644
--- a/src/common/tracker/actions/format_csv.php
+++ b/src/common/tracker/actions/format_csv.php
@@ -51,7 +51,7 @@ global $ath;
 global $group_id;
 global $HTML;
 
-$ath->header(array('atid'=>$ath->getID(), 'title'=>_('Update CSV Format')));
+$ath->header(array('atid'=>$ath->getID(), 'modal'=>1, 'title'=>_('Update CSV 
Format')));
 
 $headers = getIntFromRequest('headers', 1);
 $sep = getStringFromRequest('sep', ',');
diff --git a/src/common/tracker/actions/query.php 
b/src/common/tracker/actions/query.php
index 271a66c..1496b98 100644
--- a/src/common/tracker/actions/query.php
+++ b/src/common/tracker/actions/query.php
@@ -247,7 +247,9 @@ $res = db_query_params('SELECT artifact_query_id,query_name 
FROM artifact_query
 
 //     Show the new pop-up boxes to select assigned to, status, etc
 //
-$ath->header(array('atid'=>$ath->getID(), 'title' =>_('Build Query')));
+$ath->header(array('atid'=>$ath->getID(),
+                                  'title' =>_('Build Query'),
+                                  'modal' => 1));
 
 echo '<table style="margin-left:auto;margin-right:auto"><tr><td>' .
                '<fieldset><legend>'.
diff --git a/src/common/tracker/actions/taskmgr.php 
b/src/common/tracker/actions/taskmgr.php
index 95946f0..c7f0fb6 100644
--- a/src/common/tracker/actions/taskmgr.php
+++ b/src/common/tracker/actions/taskmgr.php
@@ -101,7 +101,8 @@ if (getStringFromRequest('add_to_task')) {
 
        $ath->header(array('titlevals'=>array($ath->getName()),
                'atid'=>$ath->getID(),
-               'title'=>_('Build Relationship Between Tracker Items and 
Tasks')));
+               'title'=>_('Build Relationship Between Tracker Items and 
Tasks'),
+               'modal'=>1));
 
        echo $HTML->openForm(array('name' => 'foo', 'action' => 
'/tracker/?func=taskmgr&group_id='.$group_id.'&atid='.$atid.'&aid='.$aid, 
'method' => 'post'));
        echo '
@@ -156,7 +157,8 @@ if (getStringFromRequest('add_to_task')) {
 
        $ath->header(array('titlevals'=>array($ath->getName()),
                'atid'=>$ath->getID(),
-               'title'=>_('Build Relationship Between Tracker Items and 
Tasks')));
+               'title'=>_('Build Relationship Between Tracker Items and 
Tasks'),
+               'modal'=>1));
 
        echo $HTML->openForm(array('name' => 'foo', 'action' => 
'/tracker/?func=taskmgr&group_id='.$group_id.'&atid='.$atid.'&aid='.$aid, 
'method' => 'post'));
        echo '
diff --git a/src/common/tracker/views/form-addextrafield.php 
b/src/common/tracker/views/form-addextrafield.php
index 71d4571..0d66983 100644
--- a/src/common/tracker/views/form-addextrafield.php
+++ b/src/common/tracker/views/form-addextrafield.php
@@ -30,7 +30,7 @@ global $HTML;
 //
 
 $title = sprintf(_('Manage Custom Fields for %s'), $ath->getName());
-$ath->adminHeader(array('title'=>$title));
+$ath->adminHeader(array('title'=>$title, 'modal'=>1));
 
 /*
        List of possible user built Selection Boxes for an ArtifactType
diff --git a/src/common/tracker/views/form-addextrafieldoption.php 
b/src/common/tracker/views/form-addextrafieldoption.php
index eee9f6c..5cd435f 100644
--- a/src/common/tracker/views/form-addextrafieldoption.php
+++ b/src/common/tracker/views/form-addextrafieldoption.php
@@ -37,7 +37,7 @@ if (!$ac || !is_object($ac)) {
 } else {
        $efearr=$ath->getExtraFieldElements($boxid);
        $title = sprintf(_('Add/Update Custom Field Elements in %s'), 
$ath->getName());
-       $ath->adminHeader(array('title'=>$title));
+       $ath->adminHeader(array('title'=>$title, 'modal'=>1));
        echo html_e('h2', array(), _('Custom Field Name')._(': 
').$ac->getName());
        $efType = $ac->getType();
        if ($efType != ARTIFACT_EXTRAFIELDTYPE_USER) {
diff --git a/src/common/tracker/views/form-clonetracker.php 
b/src/common/tracker/views/form-clonetracker.php
index 847a769..24cbc56 100644
--- a/src/common/tracker/views/form-clonetracker.php
+++ b/src/common/tracker/views/form-clonetracker.php
@@ -48,7 +48,7 @@ if (!$g || !is_object($g)) {
                        }
                }
 
-               $ath->adminHeader(array ('title'=>_('Clone Tracker')));
+               $ath->adminHeader(array ('title'=>_('Clone Tracker'), 
'modal'=>1));
 
                if (empty($ata)) {
                        echo $HTML->warning_msg(_('The site administrator must 
first set up template trackers in the template project with default values and 
set permissions properly so you can access them.'));
diff --git a/src/common/tracker/views/form-customizelist.php 
b/src/common/tracker/views/form-customizelist.php
index 160663b..459be17 100644
--- a/src/common/tracker/views/form-customizelist.php
+++ b/src/common/tracker/views/form-customizelist.php
@@ -27,7 +27,8 @@ global $HTML;
 
 $ath->adminHeader(array('title'=>_('Customize Browse List'),
        'pagename'=>'tracker_admin_customize_liste',
-       'titlevals'=>array($ath->getName())));
+       'titlevals'=>array($ath->getName()),
+       'modal'=>1));
 
 /*
        List of possible user built Selection Boxes for an ArtifactType
diff --git a/src/common/tracker/views/form-deleteextrafield.php 
b/src/common/tracker/views/form-deleteextrafield.php
index a4caa38..e0611d6 100644
--- a/src/common/tracker/views/form-deleteextrafield.php
+++ b/src/common/tracker/views/form-deleteextrafield.php
@@ -25,7 +25,8 @@
 global $HTML;
 
 $ath->adminHeader(array('title'=>sprintf(_('Delete a custom field for %s'),
-       $ath->getName())));
+       $ath->getName()),
+       'modal'=>1));
 
 $id = getStringFromRequest('id');
 ?>
diff --git a/src/common/tracker/views/form-deleteextrafieldelement.php 
b/src/common/tracker/views/form-deleteextrafieldelement.php
index b9f1648..ef23c53 100644
--- a/src/common/tracker/views/form-deleteextrafieldelement.php
+++ b/src/common/tracker/views/form-deleteextrafieldelement.php
@@ -47,7 +47,8 @@ if (!$ac || !is_object($ac)) {
        } else {
 
                $ath->adminHeader(array('title'=>sprintf(_("Delete a custom 
field element in: %s"),
-                       $ath->getName())));
+                       $ath->getName()),
+                       'modal'=>1));
 
                ?>
                <table class="centered">
diff --git a/src/common/tracker/views/form-deletetracker.php 
b/src/common/tracker/views/form-deletetracker.php
index 54ce90f..d4cfb5b 100644
--- a/src/common/tracker/views/form-deletetracker.php
+++ b/src/common/tracker/views/form-deletetracker.php
@@ -25,7 +25,8 @@
 global $HTML;
 
 $ath->adminHeader(array ('title'=>sprintf(_('Permanently Delete Tracker %s'),
-       $ath->getName())));
+       $ath->getName()),
+       'modal'=>1));
 ?>
 <table class="centered">
 <tr>
diff --git a/src/common/tracker/views/form-extrafieldcopy.php 
b/src/common/tracker/views/form-extrafieldcopy.php
index f9ce9d8..ac2d0b0 100644
--- a/src/common/tracker/views/form-extrafieldcopy.php
+++ b/src/common/tracker/views/form-extrafieldcopy.php
@@ -55,7 +55,7 @@ $res = db_query_params ('SELECT g.unix_group_name, agl.name 
AS tracker_name, aef
                }
 
                $title = sprintf(_('Copy choices from custom field %s'), 
$fb->getName());
-               $ath->adminHeader(array('title'=>$title));
+               $ath->adminHeader(array('title'=>$title, 'modal'=>1));
 
                $efearr = $ath->getExtraFieldElements($id);
                for ($i=0; $i<count($efearr); $i++) {
diff --git a/src/common/tracker/views/form-updatecanned.php 
b/src/common/tracker/views/form-updatecanned.php
index ee7cc52..e782a9f 100644
--- a/src/common/tracker/views/form-updatecanned.php
+++ b/src/common/tracker/views/form-updatecanned.php
@@ -27,7 +27,7 @@ global $HTML;
 //     FORM TO UPDATE CANNED MESSAGES
 //
 $title = sprintf(_('Modify Canned Responses In %s'),$ath->getName());
-$ath->adminHeader(array('title'=>$title));
+$ath->adminHeader(array('title'=>$title, 'modal'=>1));
 
 $id = getStringFromRequest('id');
 $acr = new ArtifactCanned($ath,$id);
diff --git a/src/common/tracker/views/form-updateextrafield.php 
b/src/common/tracker/views/form-updateextrafield.php
index 0a938af..c56fdbd 100644
--- a/src/common/tracker/views/form-updateextrafield.php
+++ b/src/common/tracker/views/form-updateextrafield.php
@@ -32,7 +32,7 @@ global $HTML;
        Allow modification of a artifact Selection Box
 */
 $title = sprintf(_('Modify a custom field in %s'),$ath->getName());
-$ath->adminHeader(array('title'=>$title));
+$ath->adminHeader(array('title'=>$title, 'modal'=>1));
 
 $id = getStringFromRequest('id');
 $ac = new ArtifactExtraField($ath,$id);
diff --git a/src/common/tracker/views/form-updateextrafieldelement.php 
b/src/common/tracker/views/form-updateextrafieldelement.php
index 6514166..b8b04d1 100644
--- a/src/common/tracker/views/form-updateextrafieldelement.php
+++ b/src/common/tracker/views/form-updateextrafieldelement.php
@@ -46,7 +46,7 @@ if (!$ac || !is_object($ac)) {
                exit_error($ao->getErrorMessage(),'tracker');
        } else {
                $title = sprintf(_('Update a custom field element in %s'), 
$ath->getName()) ;
-               $ath->adminHeader(array('title'=>$title));
+               $ath->adminHeader(array('title'=>$title, 'modal'=>1));
                echo html_e('h2', array(),  _('Custom Field Name')._(': 
').$ac->getName());
                echo $HTML->openForm(array('action' => 
'/tracker/admin/?group_id='.$group_id.'&atid='.$ath->getID(), 'method' => 
'post'));
                echo html_e('input', array('type'=>'hidden', 
'name'=>'update_opt', 'value'=>'y'));
diff --git a/src/common/tracker/views/form-updatetracker.php 
b/src/common/tracker/views/form-updatetracker.php
index 2edd7c5..4cac282 100644
--- a/src/common/tracker/views/form-updatetracker.php
+++ b/src/common/tracker/views/form-updatetracker.php
@@ -38,7 +38,8 @@ $browse_instructions = 
getStringFromRequest('browse_instructions', $ath->getBrow
 //     FORM TO UPDATE ARTIFACT TYPES
 //
 $ath->adminHeader(array('title'=>sprintf(_('Update settings for %s'),
-       $ath->getName())));
+       $ath->getName()),
+       'modal'=>1));
 echo $HTML->openForm(array('action' => 
'/tracker/admin/?group_id='.$group_id.'&atid='.$ath->getID(), 'method' => 
'post'));
 
 echo html_e('input', array('type'=>'hidden', 'name'=>'update_type', 
'value'=>'y'));
diff --git a/src/common/tracker/views/form-workflow.php 
b/src/common/tracker/views/form-workflow.php
index ffd0412..c2e5f5c 100644
--- a/src/common/tracker/views/form-workflow.php
+++ b/src/common/tracker/views/form-workflow.php
@@ -39,7 +39,8 @@ if (count($efarr) === 0) {
 
 $ath->adminHeader(array('title'=> _('Configure Workflow'),
        'pagename'=>'tracker_admin_customize_liste',
-       'titlevals'=>array($ath->getName())));
+       'titlevals'=>array($ath->getName()),
+       'modal'=>1));
 
 /*
        List of possible user built Selection Boxes for an ArtifactType
diff --git a/src/common/tracker/views/form-workflow_roles.php 
b/src/common/tracker/views/form-workflow_roles.php
index 6f650be..9446787 100644
--- a/src/common/tracker/views/form-workflow_roles.php
+++ b/src/common/tracker/views/form-workflow_roles.php
@@ -58,7 +58,8 @@ foreach ($elearray as $e) {
 $title = sprintf(_('Configuring allowed roles for the transitions from %1$s to 
%2$s'), $name[$from], $name[$next]);
 $ath->adminHeader(array('title'=>$title,
        'pagename'=>'tracker_admin_customize_liste',
-       'titlevals'=>array($ath->getName())));
+       'titlevals'=>array($ath->getName()),
+       'modal'=>1));
 
 echo $HTML->openForm(array('action' => 
'/tracker/admin/?group_id='.$group_id.'&atid='.$ath->getID(), 'method' => 
'post'));
 ?>
diff --git a/src/www/forum/admin/index.php b/src/www/forum/admin/index.php
index 61bb228..875b626 100644
--- a/src/www/forum/admin/index.php
+++ b/src/www/forum/admin/index.php
@@ -172,7 +172,7 @@ if (getStringFromRequest('add_forum')) {
 
        $f = new Forum ($g,$group_forum_id);
 
-       forum_header(array('title'=>_('Permanently Delete Forum')));
+       forum_header(array('title'=>_('Permanently Delete Forum'), 'modal' => 
1));
        echo '<p>
                        <strong>'._('You are about to permanently and 
irretrievably delete this entire forum and all its contents!').'</strong><br />
                        </p>
diff --git a/src/www/forum/admin/monitor.php b/src/www/forum/admin/monitor.php
index 3ec69a9..49a4529 100644
--- a/src/www/forum/admin/monitor.php
+++ b/src/www/forum/admin/monitor.php
@@ -49,7 +49,7 @@ if (!$f || !is_object($f)) {
 
 session_require_perm('forum_admin', $f->Group->getID());
 
-forum_header(array('title'=>sprintf(_('Forum %s Monitoring Users'), 
$f->getName())));
+forum_header(array('title'=>sprintf(_('Forum %s Monitoring Users'), 
$f->getName()), 'modal' => 1));
 
 $MonitorElementObject = new MonitorElement('forum');
 $monitorUsersIdArray = 
$MonitorElementObject->getMonitorUsersIdsInArray($group_forum_id);
diff --git a/src/www/forum/attachment.php b/src/www/forum/attachment.php
index 6654df3..fc1a4a7 100644
--- a/src/www/forum/attachment.php
+++ b/src/www/forum/attachment.php
@@ -38,7 +38,7 @@ require_once $gfcommon.'forum/ForumPendingStorage.class.php';
  */
 
 function goodbye($msg) {
-       forum_header(array('title'=>_('Attachments')));
+       forum_header(array('title'=>_('Attachments'), 'modal' => 1));
        html_feedback_top($msg);
        echo '<form method="post"><input type="button" value="'._('Close 
Window').'" onclick="window.close()" /></form>';
        site_footer();
@@ -146,7 +146,7 @@ if ($edit == "yes") {
                        exit();
                } else {
                        //show the form to edit the attach
-                       forum_header(array('title' => _('Attachments')));
+                       forum_header(array('title' => _('Attachments'), 'modal' 
=> 1));
                        $fh = new ForumHTML($f);
                        if (!$fh || !is_object($fh)) {
                                exit_error(_('Error getting new ForumHTML'), 
'forums');
diff --git a/src/www/news/submit.php b/src/www/news/submit.php
index 2c6ce24..6246d5c 100644
--- a/src/www/news/submit.php
+++ b/src/www/news/submit.php
@@ -128,7 +128,7 @@ if (session_loggedin()) {
                Show the submit form
        */
        $group = group_get_object($group_id);
-       news_header(array('title'=>_('Submit News for Project')._(': 
').$group->getPublicName()));
+       news_header(array('title'=>_('Submit News for Project')._(': 
').$group->getPublicName(), 'modal' => 1));
 
        echo '<p>';
        echo _('You can post news about your project if you are an admin on 
your project. You may also post “help wanted” notes if your project needs 
help.');
diff --git a/src/www/pm/add_task.php b/src/www/pm/add_task.php
index e9ea106..867cbf7 100644
--- a/src/www/pm/add_task.php
+++ b/src/www/pm/add_task.php
@@ -30,7 +30,7 @@ global $HTML;
 $related_artifact_id = getIntFromRequest('related_artifact_id');
 $related_artifact_summary = getStringFromRequest('related_artifact_summary');
 
-pm_header(array('title'=>_('Add a new 
Task'),'group_project_id'=>$group_project_id));
+pm_header(array('title'=>_('Add a new 
Task'),'group_project_id'=>$group_project_id, 'modal' => 1));
 echo notepad_func();
 
 $params['name'] = 'details';
diff --git a/src/www/pm/admin/index.php b/src/www/pm/admin/index.php
index 7e2c555..e500116 100644
--- a/src/www/pm/admin/index.php
+++ b/src/www/pm/admin/index.php
@@ -177,7 +177,7 @@ if ($add_cat && $group_project_id) {
        session_require_perm ('pm', $pg->getID(), 'manager') ;
 
        $title = sprintf(_('Add Categories to: %s'), $pg->getName());
-       pm_header(array('title'=>$title));
+       pm_header(array('title'=>$title, 'modal'=>1));
 
        /*
                List of possible categories for this ArtifactType
@@ -237,7 +237,7 @@ if ($add_cat && $group_project_id) {
        session_require_perm ('pm', $pg->getID(), 'manager') ;
 
        $title = sprintf(_('Modify a Category in: %s'), $pg->getName());
-       pm_header(array('title'=>$title));
+       pm_header(array('title'=>$title, 'modal'=>1));
 
        $ac = new ProjectCategory($pg,$id);
        if (!$ac || !is_object($ac)) {
@@ -270,7 +270,7 @@ if ($add_cat && $group_project_id) {
        */
        session_require_perm ('pm_admin', $group_id) ;
 
-       pm_header(array('title'=>_('Add a new subproject')));
+       pm_header(array('title'=>_('Add a new subproject'), 'modal'=>1));
 
        ?>
        <p><?php echo _('Add a new subproject to the Tasks. <strong>This is 
different than adding a task to a subproject.</strong>') ?></p>
@@ -365,7 +365,8 @@ if ($add_cat && $group_project_id) {
 
        session_require_perm ('pm', $pg->getID(), 'manager') ;
 
-       pm_header(array('title'=>_('Permanently delete this subproject and all 
its data')));
+       pm_header(array('title'=>_('Permanently delete this subproject and all 
its data'),
+                                       'modal'=>1));
 
        ?>
        <form action="<?php echo 
util_make_uri('/pm/admin/?group_id='.$group_id.'&group_project_id='.$group_project_id);
 ?>" method="post">
diff --git a/src/www/pm/deletetask.php b/src/www/pm/deletetask.php
index 58e9ac7..0f2e956 100644
--- a/src/www/pm/deletetask.php
+++ b/src/www/pm/deletetask.php
@@ -27,8 +27,8 @@
 global $HTML;
 
 pm_header(array('title'=>sprintf(_("Delete Task [T%s]"), $project_task_id),
-                'group_project_id'=>$group_project_id));
-
+                'group_project_id'=>$group_project_id,
+                'modal' => 1));
 echo $HTML->openForm(array('action' => 
'/pm/task.php?group_id='.$group_id.'&group_project_id='.$group_project_id, 
'method' => 'post'));
 ?>
 <input type="hidden" name="func" value="postdeletetask" />
diff --git a/src/www/pm/format_csv.php b/src/www/pm/format_csv.php
index f1672b6..8d4ae97 100644
--- a/src/www/pm/format_csv.php
+++ b/src/www/pm/format_csv.php
@@ -46,7 +46,7 @@
 //     so a user can choose a file to upload a .csv file and store it in task 
mgr
 //
 
-pm_header(array('title'=>_('Update CSV 
Format'),'group_project_id'=>$group_project_id));
+pm_header(array('title'=>_('Update CSV Format'), 'modal'=>1, 
'group_project_id'=>$group_project_id));
 
 $headers = getIntFromRequest('headers', 1);
 $full = getIntFromRequest('full', 1);
diff --git a/src/www/tracker/reporting/index.php 
b/src/www/tracker/reporting/index.php
index 1898692..6a96bf1 100644
--- a/src/www/tracker/reporting/index.php
+++ b/src/www/tracker/reporting/index.php
@@ -117,7 +117,7 @@ html_use_jqueryjqplotpluginhighlighter();
 html_use_jqueryjqplotplugindateAxisRenderer();
 html_use_jqueryjqplotpluginBar();
 
-$h->header(array('title' => _('Tracker Activity Reporting')));
+$h->header(array('title' => _('Tracker Activity Reporting'), 'modal' => 1));
 echo $HTML->openForm(array('action' => 
'/tracker/reporting/?group_id='.$group_id, 'method' => 'get'));
 ?>
 <table class="centered">

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

Summary of changes:
 src/common/tracker/actions/add.php                        | 2 +-
 src/common/tracker/actions/admin-tracker.php              | 3 ++-
 src/common/tracker/actions/deleteartifact.php             | 3 ++-
 src/common/tracker/actions/format_csv.php                 | 2 +-
 src/common/tracker/actions/query.php                      | 4 +++-
 src/common/tracker/actions/taskmgr.php                    | 6 ++++--
 src/common/tracker/views/form-addextrafield.php           | 2 +-
 src/common/tracker/views/form-addextrafieldoption.php     | 2 +-
 src/common/tracker/views/form-clonetracker.php            | 2 +-
 src/common/tracker/views/form-customizelist.php           | 3 ++-
 src/common/tracker/views/form-deleteextrafield.php        | 3 ++-
 src/common/tracker/views/form-deleteextrafieldelement.php | 3 ++-
 src/common/tracker/views/form-deletetracker.php           | 3 ++-
 src/common/tracker/views/form-extrafieldcopy.php          | 2 +-
 src/common/tracker/views/form-updatecanned.php            | 2 +-
 src/common/tracker/views/form-updateextrafield.php        | 2 +-
 src/common/tracker/views/form-updateextrafieldelement.php | 2 +-
 src/common/tracker/views/form-updatetracker.php           | 3 ++-
 src/common/tracker/views/form-workflow.php                | 3 ++-
 src/common/tracker/views/form-workflow_roles.php          | 3 ++-
 src/www/forum/admin/index.php                             | 2 +-
 src/www/forum/admin/monitor.php                           | 2 +-
 src/www/forum/attachment.php                              | 4 ++--
 src/www/news/submit.php                                   | 2 +-
 src/www/pm/add_task.php                                   | 2 +-
 src/www/pm/admin/index.php                                | 9 +++++----
 src/www/pm/deletetask.php                                 | 4 ++--
 src/www/pm/format_csv.php                                 | 2 +-
 src/www/tracker/reporting/index.php                       | 2 +-
 29 files changed, 49 insertions(+), 35 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