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 472ea5174867cd3f596768fbed98beca6cc1cba0 (commit)
via 22875d0ba4278c0d8b7dc4891cbcb3f5c7470433 (commit)
from 136163f49706b13f00e8a45acd35ab80e5fa607d (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=472ea5174867cd3f596768fbed98beca6cc1cba0
commit 472ea5174867cd3f596768fbed98beca6cc1cba0
Author: Franck Villaume <[email protected]>
Date: Sun Aug 28 14:58:25 2016 +0200
use url_make_uri when needed
diff --git a/src/plugins/taskboard/common/TaskBoardPlugin.class.php
b/src/plugins/taskboard/common/TaskBoardPlugin.class.php
index f195321..17282cd 100644
--- a/src/plugins/taskboard/common/TaskBoardPlugin.class.php
+++ b/src/plugins/taskboard/common/TaskBoardPlugin.class.php
@@ -1,7 +1,7 @@
<?php
/**
* Copyright (C) 2013 Vitaliy Pylypiv <[email protected]>
- * Copyright 2015, Franck Villaume - TrivialDev
+ * Copyright 2015-2016, Franck Villaume - TrivialDev
*
* This file is part of FusionForge.
*
@@ -41,7 +41,7 @@ _('Agile TaskBoard: Supports Scrum and Kanban
methodologies.');
$group_id = $params['group_id'];
$group = group_get_object($group_id);
if ( $group->usesPlugin($this->name)) {
- echo html_e('p', array(),
util_make_link('/plugins/'.$this->name.'/admin/index.php?group_id='.$group_id,
_('Task Board Admin')));
+ echo html_e('p', array(),
util_make_uri('/plugins/'.$this->name.'/admin/index.php?group_id='.$group_id,
_('Task Board Admin')));
}
} elseif ($hookname == 'groupmenu') {
$group_id = $params['group'];
@@ -55,13 +55,13 @@ _('Agile TaskBoard: Supports Scrum and Kanban
methodologies.');
if($group->usesPlugin($this->name)) {
$params['TITLES'][] = $this->text;
- $params['DIRS'][] =
'/plugins/'.$this->name.'/index.php?group_id='.$group_id;
+ $params['DIRS'][] =
util_make_uri('/plugins/'.$this->name.'/index.php?group_id='.$group_id);
$params['TOOLTIPS'][] = _('Agile Scrum and
Kanban display of existing artifacts.');
if (session_loggedin()) {
$user = session_get_user();
$userperm = $group->getPermission();
if ($userperm->isAdmin()) {
- $params['ADMIN'][] =
'/plugins/'.$this->name.'/admin/?&group_id='.$group_id;
+ $params['ADMIN'][] =
util_make_uri('/plugins/'.$this->name.'/admin/?&group_id='.$group_id);
}
}
if(isset($params['toptab'])){
diff --git a/src/plugins/taskboard/common/views/ind.php
b/src/plugins/taskboard/common/views/ind.php
index d21ca79..d945ee1 100644
--- a/src/plugins/taskboard/common/views/ind.php
+++ b/src/plugins/taskboard/common/views/ind.php
@@ -42,7 +42,7 @@ $taskboardFactory->header();
if (!$tb_arr || count($tb_arr) < 1) {
echo $HTML->information(_('No taskboards have been set up, or you
cannot view them.'));
echo '<p>';
- echo sprintf(_('The Admin for this project will have to set up data
types using the %1$s admin page %2$s'), '<a href="'.util_make_url
('/plugins/'.$pluginTaskboard->name.'/?group_id='.$group_id).'">', '</a>');
+ echo sprintf(_('The Admin for this project will have to set up data
types using the %1$s admin page %2$s'), '<a
href="'.util_make_uri('/plugins/'.$pluginTaskboard->name.'/?group_id='.$group_id).'">',
'</a>');
echo "</p>";
} else {
echo '<p>'._('Choose a taskboard.').'</p>';
@@ -55,7 +55,7 @@ if (!$tb_arr || count($tb_arr) < 1) {
echo $tb_arr[$j]->getErrorMessage();
} else {
$cells = array();
- $cells[][] =
util_make_link('/plugins/'.$pluginTaskboard->name.'/?group_id='.$group_id.'&taskboard_id='.$tb_arr[$j]->getID(),
+ $cells[][] =
util_make_uri('/plugins/'.$pluginTaskboard->name.'/?group_id='.$group_id.'&taskboard_id='.$tb_arr[$j]->getID(),
html_image("ic/tracker20w.png", 20, 20).' '.$tb_arr[$j]->getName());
$cells[][] = $tb_arr[$j]->getDescription();
echo $HTML->multiTableRow(array('class' =>
$HTML->boxGetAltRowStyle($j, true)), $cells);
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=22875d0ba4278c0d8b7dc4891cbcb3f5c7470433
commit 22875d0ba4278c0d8b7dc4891cbcb3f5c7470433
Author: Franck Villaume <[email protected]>
Date: Sun Aug 28 14:57:09 2016 +0200
remove usage of url_make_uri in openForm call. duplicate
diff --git a/src/common/docman/views/reporting.php
b/src/common/docman/views/reporting.php
index a63b4f5..3758180 100644
--- a/src/common/docman/views/reporting.php
+++ b/src/common/docman/views/reporting.php
@@ -85,7 +85,7 @@ if ($report->isError()) {
echo $HTML->error_msg($report->getErrorMessage());
} else {
echo html_ao('div', array('id' => 'div_form_reporting'));
- echo $HTML->openForm(array('action' =>
util_make_uri('/docman/?group_id='.$group_id.'&view=reporting'), 'method' =>
'post', 'class' => 'align-center'));
+ echo $HTML->openForm(array('action' =>
'/docman/?group_id='.$group_id.'&view=reporting', 'method' => 'post', 'class'
=> 'align-center'));
echo html_e('strong', array(), _('Start Date')._(':'), false);
echo report_months_box($report, 'start', $start);
echo html_e('strong', array(), _('End Date')._(':'), false);
diff --git a/src/common/frs/views/admin.php b/src/common/frs/views/admin.php
index e42762d..9effa24 100644
--- a/src/common/frs/views/admin.php
+++ b/src/common/frs/views/admin.php
@@ -150,7 +150,7 @@ if (count($FRSPackages) == 0) {
if (forge_check_perm('frs_admin', $group_id, 'admin')) {
echo html_ao('fieldset');
echo html_e('legend', array(), _('Create New Package'));
- echo $HTML->openForm(array('action' =>
util_make_uri('/frs/?group_id='.$group_id.'&action=addpackage'), 'method' =>
'post'));
+ echo $HTML->openForm(array('action' =>
'/frs/?group_id='.$group_id.'&action=addpackage', 'method' => 'post'));
echo html_e('p', array(), html_e('strong', array(), _('New Package
Name')._(':')).html_e('input', array('type' => 'text', 'name' =>
'package_name', 'size' => 20, 'maxlength' => 30, 'required' => 'required',
'pattern' => '.{3,}', 'title' => _('At least 3 characters'))).html_e('input',
array('type' => 'submit', 'name' => 'submit', 'value' => _('Create'))));
echo $HTML->closeForm();
echo html_ac(html_ap() - 1);
diff --git a/src/common/frs/views/editrelease.php
b/src/common/frs/views/editrelease.php
index f2660bf..a1c4f87 100644
--- a/src/common/frs/views/editrelease.php
+++ b/src/common/frs/views/editrelease.php
@@ -75,7 +75,7 @@ echo html_e('h2', array(), _('Edit Release for the
package').' '.$frsp->getName(
* Show the forms for each part
*/
if (forge_check_perm('frs', $package_id, 'admin')) {
- echo $HTML->openForm(array('enctype' => 'multipart/form-data', 'method'
=> 'post', 'action' =>
util_make_uri('/frs/?group_id='.$group_id.'&release_id='.$release_id.'&package_id='.$package_id.'&action=editrelease')));
+ echo $HTML->openForm(array('enctype' => 'multipart/form-data', 'method'
=> 'post', 'action' =>
'/frs/?group_id='.$group_id.'&release_id='.$release_id.'&package_id='.$package_id.'&action=editrelease'));
echo $HTML->listTableTop();
$cells = array();
$cells[][] = '<strong>'._('Release Date')._(':').'</strong>';
@@ -126,7 +126,7 @@ echo html_e('hr');
echo html_e('h2', array(), _('Add Files To This Release'));
echo html_e('p', array(), _('Now, choose a file to upload into the system.'));
-echo $HTML->openForm(array('enctype' => 'multipart/form-data', 'method' =>
'post', 'action' =>
util_make_uri('/frs/?group_id='.$group_id.'&release_id='.$release_id.'&package_id='.$package_id.'&action=addfile')));
+echo $HTML->openForm(array('enctype' => 'multipart/form-data', 'method' =>
'post', 'action' =>
'/frs/?group_id='.$group_id.'&release_id='.$release_id.'&package_id='.$package_id.'&action=addfile'));
echo html_ao('fieldset');
echo html_e('legend', array(), '<strong>'._('File Name').'</strong>');
echo _('Upload a new file')._(': ').'<input type="file" name="userfile"
/>'.'('._('max upload size')._(':
').human_readable_bytes(util_get_maxuploadfilesize()).')';
@@ -173,7 +173,7 @@ if(count($files)) {
echo $HTML->listTableTop($title_arr, array(), '', '', array(), array(),
array(array('style' => 'width: 2%'), array('style' => 'width: 30%')));
echo '<tr><td colspan="7" style="padding:0;">';
foreach ($files as $key => $file) {
- echo $HTML->openForm(array('action' =>
util_make_uri('/frs/?group_id='.$group_id.'&release_id='.$release_id.'&package_id='.$package_id.'&file_id='.$file->getID().'&action=editfile'),
'method' => 'post', 'id' => 'fileid'.$file->getID()));
+ echo $HTML->openForm(array('action' =>
'/frs/?group_id='.$group_id.'&release_id='.$release_id.'&package_id='.$package_id.'&file_id='.$file->getID().'&action=editfile',
'method' => 'post', 'id' => 'fileid'.$file->getID()));
echo $HTML->listTableTop();
$cells = array();
$cells[] = array(html_e('input', array('type' => 'checkbox',
'value' => $file->getID(), 'class' => 'checkedrelidactive', 'title' =>
_('Select / Deselect this file for massaction'), 'onClick' =>
'controllerFRS.checkgeneral("active")')), 'style' => 'width: 2%; padding:
0px;');
diff --git a/src/common/frs/views/linktrackerroadmap.php
b/src/common/frs/views/linktrackerroadmap.php
index 16f35aa..d886378 100644
--- a/src/common/frs/views/linktrackerroadmap.php
+++ b/src/common/frs/views/linktrackerroadmap.php
@@ -52,7 +52,7 @@ if (count($enabledRoadmaps)) {
$type = 'add';
$labelInput = _('Attach this roadmap
from this release');
}
- echo $HTML->openForm(array('action' =>
util_make_uri('/frs/?group_id='.$group_id.'&release_id='.$release_id.'&package_id='.$package_id.'&roadmap_id='.$enabledRoadmap->getID().'&action=linkroadmap&type='.$type),
'method' => 'post', 'id' => 'roadmap'.$enabledRoadmap->getID()));
+ echo $HTML->openForm(array('action' =>
'/frs/?group_id='.$group_id.'&release_id='.$release_id.'&package_id='.$package_id.'&roadmap_id='.$enabledRoadmap->getID().'&action=linkroadmap&type='.$type,
'method' => 'post', 'id' => 'roadmap'.$enabledRoadmap->getID()));
echo $HTML->listTableTop();
$cells = array();
$inputAttr =
diff --git a/src/common/frs/views/reporting.php
b/src/common/frs/views/reporting.php
index a69724a..3e227fe 100644
--- a/src/common/frs/views/reporting.php
+++ b/src/common/frs/views/reporting.php
@@ -82,7 +82,7 @@ if ($report->isError()) {
echo $HTML->error_msg($report->getErrorMessage());
} else {
- echo $HTML->openForm(array('action' =>
util_make_url('/frs/?view=reporting&group_id='.$group_id), 'method' => 'post',
'class' => 'align-center'));
+ echo $HTML->openForm(array('action' =>
'/frs/?view=reporting&group_id='.$group_id, 'method' => 'post', 'class' =>
'align-center'));
echo html_e('strong', array(),
_('Package')._(':')).report_package_box($group_id,'package_id',$package_id);
echo html_e('strong', array(), _('Start
Date')._(':')).report_months_box($report, 'start', $start);
echo html_e('strong', array(), _('End
Date')._(':')).report_months_box($report, 'end', $end);
diff --git a/src/common/tracker/actions/format_csv.php
b/src/common/tracker/actions/format_csv.php
index 5f3de88..65ce34d 100644
--- a/src/common/tracker/actions/format_csv.php
+++ b/src/common/tracker/actions/format_csv.php
@@ -61,7 +61,7 @@ $sep = getStringFromRequest('sep', ',');
<tr>
<td>
<fieldset><legend><strong><?php echo _('CSV Format');
?></strong></legend><?php
- echo $HTML->openForm(array('action' =>
util_make_uri('/tracker/'), 'method' => 'get'));?>
+ echo $HTML->openForm(array('action' => '/tracker/', 'method' =>
'get'));?>
<input type="hidden" name="group_id" value="<?php echo
$group_id ?>" />
<input type="hidden" name="atid" value="<?php echo
$ath->getID() ?>" />
<input type="hidden" name="func" value="csv" />
diff --git a/src/common/widget/WidgetLayoutManager.class.php
b/src/common/widget/WidgetLayoutManager.class.php
index f9b1bf4..9a637c7 100644
--- a/src/common/widget/WidgetLayoutManager.class.php
+++ b/src/common/widget/WidgetLayoutManager.class.php
@@ -296,7 +296,7 @@ class WidgetLayoutManager {
$action = 'widget';
}
echo $HTML->html_list($elementsLi, array('class' =>
'widget_toolbar'));
- echo $HTML->openForm(array('action' =>
util_make_uri('/widgets/updatelayout.php?owner='.$owner_type.$owner_id.'&action='.$action.'&layout_id='.$layout_id),
'method' => 'post'));
+ echo $HTML->openForm(array('action' =>
'/widgets/updatelayout.php?owner='.$owner_type.$owner_id.'&action='.$action.'&layout_id='.$layout_id,
'method' => 'post'));
if ($update_layout) {
?>
<script type='text/javascript'>//<![CDATA[
diff --git a/src/plugins/authbuiltin/common/AuthBuiltinPlugin.class.php
b/src/plugins/authbuiltin/common/AuthBuiltinPlugin.class.php
index 11d39e8..9c14e3f 100644
--- a/src/plugins/authbuiltin/common/AuthBuiltinPlugin.class.php
+++ b/src/plugins/authbuiltin/common/AuthBuiltinPlugin.class.php
@@ -68,7 +68,7 @@ class AuthBuiltinPlugin extends ForgeAuthPlugin {
$result = '';
$result .= html_e('p', array(), _('Cookies must be enabled past
this point.'), false);
- $result .= $HTML->openForm(array('action' =>
util_make_uri('/plugins/'.$this->name.'/post-login.php'), 'method' => 'post'));
+ $result .= $HTML->openForm(array('action' =>
'/plugins/'.$this->name.'/post-login.php', 'method' => 'post'));
$result .= html_e('input', array('type' => 'hidden', 'name' =>
'form_key', 'value' => form_generate_key()));
$result .= html_e('input', array('type' => 'hidden', 'name' =>
'return_to', 'value' => htmlspecialchars(stripslashes($return_to))));
$result .= html_ao('p');
diff --git a/src/plugins/authldap/common/AuthLDAPPlugin.class.php
b/src/plugins/authldap/common/AuthLDAPPlugin.class.php
index 2811b23..d11d455 100644
--- a/src/plugins/authldap/common/AuthLDAPPlugin.class.php
+++ b/src/plugins/authldap/common/AuthLDAPPlugin.class.php
@@ -207,7 +207,7 @@ into the FusionForge database.");
$result = '';
$result .= html_e('p', array(), _('Cookies must be enabled past
this point.'));
- $result .= $HTML->openForm(array('action' =>
util_make_uri('/plugins/'.$this->name.'/post-login.php'), 'method' => 'post'));
+ $result .= $HTML->openForm(array('action' =>
'/plugins/'.$this->name.'/post-login.php', 'method' => 'post'));
$result .= html_e('input', array('type' => 'hidden', 'name' =>
'form_key', 'value' => form_generate_key()));
$result .= html_e('input', array('type' => 'hidden', 'name' =>
'return_to', 'value' => htmlspecialchars(stripslashes($return_to))));
$result .= html_e('p', array(), _('Login Name')._(':').
diff --git a/src/www/account/change_email.php b/src/www/account/change_email.php
index db87c85..c580238 100644
--- a/src/www/account/change_email.php
+++ b/src/www/account/change_email.php
@@ -76,7 +76,7 @@ if (getStringFromRequest('submit')) {
echo html_e('p', array(), _('Changing your email address will require
confirmation from your new email address, so that we can ensure we have a good
email address on file.'));
echo html_e('p', array(), _('We need to maintain an accurate email
address for each user due to the level of access we grant via this account. If
we need to reach a user for issues arriving from a shell or project account, it
is important that we be able to do so.'));
echo html_e('p', array(), _('Submitting the form below will mail a
confirmation URL to the new email address. Visiting this link will complete the
email change.'));
- echo $HTML->openForm(array('action' =>
util_make_uri('/account/change_email.php'), 'method' => 'post'));
+ echo $HTML->openForm(array('action' => '/account/change_email.php',
'method' => 'post'));
echo html_e('p', array(), html_e('input', array('type' => 'hidden',
'name' => 'form_key', 'value' => form_generate_key())).
_('New Email
Address')._(':').utils_requiredField().
html_e('label', array('for' => 'newemail'),
html_e('input', array('id' => 'newemail', 'required' => 'required', 'type' =>
'email', 'name' => 'newemail', 'maxlength' => 255))).
diff --git a/src/www/account/change_pw.php b/src/www/account/change_pw.php
index 5085848..983da3d 100644
--- a/src/www/account/change_pw.php
+++ b/src/www/account/change_pw.php
@@ -68,7 +68,7 @@ if (getStringFromRequest('submit')) {
} else {
// Show change form
site_user_header(array('title'=>_('Change Password')));
- echo $HTML->openForm(array('action' =>
util_make_uri('/account/change_pw.php'), 'method' => 'post'));
+ echo $HTML->openForm(array('action' => '/account/change_pw.php',
'method' => 'post'));
echo html_e('input', array('type' => 'hidden', 'name' => 'form_key',
'value' => form_generate_key()));
echo html_e('p', array(), _('Old
Password')._(':').utils_requiredField().
html_e('br').
diff --git a/src/www/account/editsshkeys.php b/src/www/account/editsshkeys.php
index 4263b8b..fa05fab 100644
--- a/src/www/account/editsshkeys.php
+++ b/src/www/account/editsshkeys.php
@@ -62,7 +62,7 @@ if (count($sshKeysArray)) {
echo $HTML->listTableBottom();
echo $HTML->boxBottom();
}
-echo $HTML->openForm(array('action' =>
util_make_uri('/account/?action=addsshkey'), 'method' => 'post', 'enctype' =>
'multipart/form-data'));
+echo $HTML->openForm(array('action' => '/account/?action=addsshkey', 'method'
=> 'post', 'enctype' => 'multipart/form-data'));
echo html_e('h2', array(), _('Add a new ssh key'));
echo html_e('p', array(), _('To avoid having to type your password every time
for your SSH developer account, you may upload your public key(s) here and they
will be placed on the server in your ~/.ssh/authorized_keys file. Uploaded SSH
keys are effective <em>immediately</em>.'));
echo html_e('p', array(), _('To generate a public key, run the program
\'ssh-keygen\'. The public key will be placed at \'~/.ssh/id_dsa.pub\',
\'~/.ssh/id_rsa.pub\', \'~/.ssh/id_ecdsa.pub\' or \'~/.ssh/id_ed25519.pub\'
(protocol version 2). Read the ssh documentation for further information on
sharing keys.'));
diff --git a/src/www/account/index.php b/src/www/account/index.php
index f410717..f244b52 100644
--- a/src/www/account/index.php
+++ b/src/www/account/index.php
@@ -104,7 +104,7 @@ html_use_tablesorter();
$title = _('My Account');
site_user_header(array('title'=>$title));
-echo $HTML->openForm(array('action' => util_make_uri('/account/'), 'method' =>
'post'));
+echo $HTML->openForm(array('action' => '/account/', 'method' => 'post'));
echo html_e('input', array('type' => 'hidden', 'name' => 'form_key', 'value'
=> form_generate_key()));
echo $HTML->boxTop(_('Account options'));
echo html_e('p', array(), _('Welcome').html_e('strong', array(),
$u->getRealName()));
diff --git a/src/www/account/pending-resend.php
b/src/www/account/pending-resend.php
index 06bf8ad..7d2c190 100644
--- a/src/www/account/pending-resend.php
+++ b/src/www/account/pending-resend.php
@@ -60,7 +60,7 @@ if (forge_get_config('require_unique_email')) {
echo _('Fill in a user name and click “Submit” to resend the
confirmation email.');
}
-echo $HTML->openForm(array('action' =>
util_make_uri('/account/pending-resend.php'), 'method' => 'post'));
+echo $HTML->openForm(array('action' => '/account/pending-resend.php', 'method'
=> 'post'));
if (forge_get_config('require_unique_email')) {
$content = _('Login name or email address')._(':');
diff --git a/src/www/account/register.php b/src/www/account/register.php
index 75f5ea0..b7b10f8 100644
--- a/src/www/account/register.php
+++ b/src/www/account/register.php
@@ -140,7 +140,7 @@ if (!isset($ccode) || empty($ccode) ||
!preg_match('/^[a-zA-Z]{2}$/', $ccode)) {
}
site_header(array('title'=>_('User Account Registration')));
-echo $HTML->openForm(array('action' => util_make_uri('/account/register.php'),
'method' => 'post'));
+echo $HTML->openForm(array('action' => '/account/register.php', 'method' =>
'post'));
echo html_e('input', array('type' => 'hidden', 'name' => 'form_key', 'value'
=> form_generate_key()));
?>
<p>
diff --git a/src/www/account/verify.php b/src/www/account/verify.php
index ad0ec26..709add6 100644
--- a/src/www/account/verify.php
+++ b/src/www/account/verify.php
@@ -69,7 +69,7 @@ if (getStringFromRequest('submit')) {
$HTML->header(array('title'=>_('Verify')));
echo html_e('p', array(), _('In order to complete your registration, login
now. Your account will then be activated for normal logins.'));
-echo $HTML->openForm(array('action' =>
util_make_uri('/account/verify.php?confirm_hash='.$confirm_hash), 'method' =>
'post'));
+echo $HTML->openForm(array('action' =>
'/account/verify.php?confirm_hash='.$confirm_hash, 'method' => 'post'));
if (forge_get_config('require_unique_email')) {
$content = _('Login name or email address')._(':');
} else {
diff --git a/src/www/admin/index.php b/src/www/admin/index.php
index 3d21c1f..733483f 100644
--- a/src/www/admin/index.php
+++ b/src/www/admin/index.php
@@ -83,7 +83,7 @@ echo html_ac(html_ap() - 1);
<ul>
<li><?php
- echo $HTML->openForm(array('action' =>
util_make_uri('/admin/globalroleedit.php'), 'method' => 'post')).'<p>';
+ echo $HTML->openForm(array('action' =>
'/admin/globalroleedit.php', 'method' => 'post')).'<p>';
echo global_role_box('role_id');
echo '<input type="submit" name="edit" value="'._("Edit
Role").'" /></p>'.$HTML->closeForm();
?>
@@ -91,7 +91,7 @@ echo html_ac(html_ap() - 1);
<li>
<?php
- echo $HTML->openForm(array('action' =>
util_make_uri('/admin/globalroleedit.php'), 'method' => 'post')).'<p>';
+ echo $HTML->openForm(array('action' =>
'/admin/globalroleedit.php', 'method' => 'post')).'<p>';
echo '<input type="text" name="role_name" size="10" value=""
required="required" />';
echo '<input type="submit" name="add" value="'._("Create
Role").'" /></p>'.$HTML->closeForm();
?></li>
-----------------------------------------------------------------------
Summary of changes:
src/common/docman/views/reporting.php | 2 +-
src/common/frs/views/admin.php | 2 +-
src/common/frs/views/editrelease.php | 6 +++---
src/common/frs/views/linktrackerroadmap.php | 2 +-
src/common/frs/views/reporting.php | 2 +-
src/common/tracker/actions/format_csv.php | 2 +-
src/common/widget/WidgetLayoutManager.class.php | 2 +-
src/plugins/authbuiltin/common/AuthBuiltinPlugin.class.php | 2 +-
src/plugins/authldap/common/AuthLDAPPlugin.class.php | 2 +-
src/plugins/taskboard/common/TaskBoardPlugin.class.php | 8 ++++----
src/plugins/taskboard/common/views/ind.php | 4 ++--
src/www/account/change_email.php | 2 +-
src/www/account/change_pw.php | 2 +-
src/www/account/editsshkeys.php | 2 +-
src/www/account/index.php | 2 +-
src/www/account/pending-resend.php | 2 +-
src/www/account/register.php | 2 +-
src/www/account/verify.php | 2 +-
src/www/admin/index.php | 4 ++--
19 files changed, 26 insertions(+), 26 deletions(-)
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits