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  1a6cef70dcb902edb4d8b464ba1be050b05515c4 (commit)
      from  046456cbe8d8f19dd63ed29a87bcb388a3255ce3 (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=1a6cef70dcb902edb4d8b464ba1be050b05515c4

commit 1a6cef70dcb902edb4d8b464ba1be050b05515c4
Author: Franck Villaume <[email protected]>
Date:   Fri Jun 10 18:31:15 2016 +0200

    fix PHP syntax

diff --git a/src/common/search/DocsSearchQuery.class.php 
b/src/common/search/DocsSearchQuery.class.php
index 0b7690b..ff9cfca 100644
--- a/src/common/search/DocsSearchQuery.class.php
+++ b/src/common/search/DocsSearchQuery.class.php
@@ -88,7 +88,7 @@ class DocsSearchQuery extends SearchQuery {
                } elseif (!isset($options['date_begin']) && 
isset($options['date_end'])) {
                        $qpa = db_construct_qpa($qpa, ' AND 
docdata_vw.createdate <= $1', array($options['date_end']));
                } elseif (isset($options['date_begin']) && 
isset($options['date_end'])) {
-                       $qpa = db_construct_qpa($qpa, ' AND 
docdata_vw.createdate between $1 and $2', array($options['date_begin'], 
$$options['date_end']));
+                       $qpa = db_construct_qpa($qpa, ' AND 
docdata_vw.createdate between $1 and $2', array($options['date_begin'], 
$options['date_end']));
                }
                return $qpa;
        }

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

Summary of changes:
 src/common/search/DocsSearchQuery.class.php | 2 +-
 1 file changed, 1 insertion(+), 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