gforge-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gforge-commits] gforge/www/tracker detail.php, 1.13, 1.14 mod-limited.p


From: cbayle
Subject: [Gforge-commits] gforge/www/tracker detail.php, 1.13, 1.14 mod-limited.php, 1.3, 1.4 mod.php, 1.15, 1.16
Date: Tue, 20 Jul 2004 10:56:37 -0500

Update of /cvsroot/gforge/gforge/www/tracker
In directory db.perdue.net:/tmp/cvs-serv16342/www/tracker

Modified Files:
        detail.php mod-limited.php mod.php 
Log Message:
Closes patch #842 from kikov 
Add Plugin Hook to Tracker to Support extended abilities


Index: detail.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/tracker/detail.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- detail.php  15 Jan 2004 15:26:03 -0000      1.13
+++ detail.php  20 Jul 2004 15:56:35 -0000      1.14
@@ -134,7 +134,10 @@
 
        ?>
        </td></tr>
-
+       <?php
+               $hookParams['artifact_id']=$aid;
+               plugin_hook("artifact_extra_detail",$hookParams);
+       ?>
        <tr>
        <td colspan="2">
        <h3><?php echo $Language->getText('tracker_detail','changes') ?>:</h3>

Index: mod-limited.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/tracker/mod-limited.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- mod-limited.php     29 Jun 2004 15:29:53 -0000      1.3
+++ mod-limited.php     20 Jul 2004 15:56:35 -0000      1.4
@@ -213,7 +213,10 @@
                echo $GLOBALS['HTML']->listTableBottom();
                ?>
        </td><tr>
-
+       <?php
+               $hookParams['artifact_id']=$aid;
+               plugin_hook("artifact_extra_detail",$hookParams);
+       ?>
        <tr><td colspan="2">
                <h4><?php echo $Language->getText('tracker_mod','changelog') 
?>:</h4>
                <?php 

Index: mod.php
===================================================================
RCS file: /cvsroot/gforge/gforge/www/tracker/mod.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- mod.php     15 Jan 2004 15:26:03 -0000      1.15
+++ mod.php     20 Jul 2004 15:56:35 -0000      1.16
@@ -221,7 +221,10 @@
                echo $GLOBALS['HTML']->listTableBottom();
                ?>
        </td><tr>
-
+       <?php
+               $hookParams['artifact_id']=$aid;
+               plugin_hook("artifact_extra_detail",$hookParams);
+       ?>
        <tr><td colspan="2">
                <h4><?php echo $Language->getText('tracker_mod','changelog') 
?>:</h4>
                <?php 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]