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  c6ad29e7694d5b8e129a62325ce63ecf3eec302b (commit)
      from  6131528e92d2f225be2a2752929801873b751c15 (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=c6ad29e7694d5b8e129a62325ce63ecf3eec302b

commit c6ad29e7694d5b8e129a62325ce63ecf3eec302b
Author: Marc-Etienne Vargenau <[email protected]>
Date:   Tue Sep 27 13:17:40 2016 +0200

    Less strings

diff --git a/src/common/include/exit.php b/src/common/include/exit.php
index 59c795c..05e0607 100644
--- a/src/common/include/exit.php
+++ b/src/common/include/exit.php
@@ -56,7 +56,9 @@ function exit_permission_denied($reason_descr = '', $toptab = 
'') {
                exit_not_logged_in();
        } else {
                if (!$reason_descr) {
-                       $reason_descr=_('Permission denied. This project\'s 
administrator will have to grant you permission to view this page.');
+                       $reason_descr = _('Permission denied.')
+                                                       .' '
+                                                       ._("This project's 
administrator will have to grant you permission to view this page.");
                }
                exit_error($reason_descr, $toptab);
        }
@@ -75,7 +77,9 @@ function exit_not_logged_in() {
  * exit_no_group() - Exit with no group chosen error
  */
 function exit_no_group() {
-       exit_error(_('Permission denied. No project was chosen, project does 
not exist or you cannot access it.'), '');
+       exit_error(_('Permission denied.')
+                               .' '
+                               ._('No project was chosen, project does not 
exist or you cannot access it.'), '');
 }
 
 /**

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

Summary of changes:
 src/common/include/exit.php | 8 ++++++--
 1 file changed, 6 insertions(+), 2 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