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, Branch_5_3 has been updated
       via  bc4069e756424cc54053032ee61e8bb3d9dc3978 (commit)
      from  8e4a670465afa417cfcdbbd16d1880705ced7e07 (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 bc4069e756424cc54053032ee61e8bb3d9dc3978
Author: Franck Villaume <[email protected]>
Date:   Fri Jul 11 13:31:28 2014 +0200

    fix [#687] Project name with html

diff --git a/src/CHANGES b/src/CHANGES
index 2f4cd54..630a169 100644
--- a/src/CHANGES
+++ b/src/CHANGES
@@ -10,6 +10,7 @@ Fusionforge-5.3.2:
 * Plugin fckeditor: dropped in favor of ckeditor
 * Docman: fix download count [#702] (TrivialDev)
 * Tracker: fix translation support [#688] (TrivialDev)
+* Projects: fix Project name with html [#687] (TrivialDev)
 
 Fusionforge-5.3.1:
 * Docman: Basic Webdav write mkcol support (TrivialDev)
diff --git a/src/common/include/Group.class.php 
b/src/common/include/Group.class.php
index 5b34132..1442285 100644
--- a/src/common/include/Group.class.php
+++ b/src/common/include/Group.class.php
@@ -153,7 +153,7 @@ function &group_get_objects_by_name($groupname_arr) {
 
 function group_get_object_by_publicname($groupname) {
        $res = db_query_params('SELECT * FROM groups WHERE lower(group_name) 
LIKE $1',
-                               
array(htmlspecialchars(strtolower($groupname))));
+                               
array(htmlspecialchars(html_entity_decode(strtolower($groupname)))));
        return group_get_object(db_result($res, 0, 'group_id'), $res);
 }
 

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

Summary of changes:
 src/CHANGES                        |    1 +
 src/common/include/Group.class.php |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
FusionForge

_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits

Reply via email to