[Fusionforge-commits] FusionForge branch master updated. ed186c390e3b46f69759f4b67dc82c1cfb2b431f

Franck Villaume nerville at fusionforge.org
Sun Apr 20 16:12:00 CEST 2014


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  ed186c390e3b46f69759f4b67dc82c1cfb2b431f (commit)
      from  f8f83044e4b77b3bc8a4e30f0ea6dc708382206d (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 -----------------------------------------------------------------
commit ed186c390e3b46f69759f4b67dc82c1cfb2b431f
Author: Franck Villaume <franck.villaume at trivialdev.com>
Date:   Sun Apr 20 16:11:40 2014 +0200

    fix php syntax

diff --git a/src/plugins/globaldashboard/www/admin/add_account.php b/src/plugins/globaldashboard/www/admin/add_account.php
index e1048de..aba4bc5 100644
--- a/src/plugins/globaldashboard/www/admin/add_account.php
+++ b/src/plugins/globaldashboard/www/admin/add_account.php
@@ -39,7 +39,7 @@ $artifacts_discovery = getIntFromPost('artifacts_discovery_method');
 
 $user = session_get_user();
 if($user->getID() != $user_id) {
-	$error_msg = _('You can add remote accounts ONLY for yourself !!!')
+	$error_msg = _('You can add remote accounts ONLY for yourself !!!');
 	session_redirect( '/plugins/globaldashboard/admin/manage_accounts.php?type=user&id='.$user_id.'&pluginname=globaldashboard');
 }
 
@@ -69,7 +69,7 @@ if($result) {
 				."VALUES ( $1, $2, $3)";
 	$disc_result = db_query_params($t_disc_query, array(db_insertid($result, $t_account_table, 'account_id'), $projects_discovery, $artifacts_discovery));
 	if($disc_result) {
-		$feedback = _('Remote Account successfully created')
+		$feedback = _('Remote Account successfully created');
 		session_redirect('/plugins/globaldashboard/admin/manage_accounts.php?type=user&id='.$user_id.'&pluginname=globaldashboard');
 	} else {
 		$error_msg = _('Remote account created but unable to create remote associated discovery parameters')._(': ').db_error();
diff --git a/src/plugins/headermenu/action/addLink.php b/src/plugins/headermenu/action/addLink.php
index af235c8..e6bc073 100644
--- a/src/plugins/headermenu/action/addLink.php
+++ b/src/plugins/headermenu/action/addLink.php
@@ -52,7 +52,7 @@ if (!empty($name) && !empty($linkmenu)) {
 					session_redirect($redirect_url);
 				} else {
 					$error_msg = _('Provided Link is not a valid URL.');
-					session_redirect($redirect_url));
+					session_redirect($redirect_url);
 				}
 			}
 			$warning_msg = _('Missing Link URL.');
diff --git a/src/plugins/mailman/www/admin/deletelist.php b/src/plugins/mailman/www/admin/deletelist.php
index 6610612..2fcc6a4 100644
--- a/src/plugins/mailman/www/admin/deletelist.php
+++ b/src/plugins/mailman/www/admin/deletelist.php
@@ -43,7 +43,7 @@ if ($request->exist('submit')) {
 	if (!$ml->deleteList($sure,$really_sure)) {
 		exit_error('Error',$ml->getErrorMessage());
 	} else {
-		$feedback = _('Deleted')
+		$feedback = _('Deleted');
 		session_redirect('/plugins/mailman/index.php?group_id='.$group_id);
 	}
 }
diff --git a/src/plugins/mantisbt/www/getAttachment.php b/src/plugins/mantisbt/www/getAttachment.php
index 55368ce..b812611 100644
--- a/src/plugins/mantisbt/www/getAttachment.php
+++ b/src/plugins/mantisbt/www/getAttachment.php
@@ -82,7 +82,7 @@ if ($idAttachment) {
 		$clientSOAP = new SoapClient($mantisbtConf['url']."/api/soap/mantisconnect.php?wsdl", array('trace'=>true, 'exceptions'=>true));
 		$content = $clientSOAP->__soapCall('mc_issue_attachment_get', array("username" => $username, "password" => $password, "issue_attachment_id" => $idAttachment));
 	} catch (SoapFault $soapFault) {
-		$error_msg = $soapFault->faultstring
+		$error_msg = $soapFault->faultstring;
 		session_redirect('plugins/mantisbt/?type=group&group_id='.$group_id.'&pluginname=mantisbt');
 	}
 

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

Summary of changes:
 src/plugins/globaldashboard/www/admin/add_account.php |    4 ++--
 src/plugins/headermenu/action/addLink.php             |    2 +-
 src/plugins/mailman/www/admin/deletelist.php          |    2 +-
 src/plugins/mantisbt/www/getAttachment.php            |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
FusionForge



More information about the Fusionforge-commits mailing list