r303: Added SVN constant to user files; now ISSO debug information shows SVN details.
authorRobert Sesek <rsesek@bluestatic.org>
Sun, 10 Jul 2005 21:45:26 +0000 (21:45 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Sun, 10 Jul 2005 21:45:26 +0000 (21:45 +0000)
14 files changed:
attachment.php
editcomment.php
editreport.php
favourite.php
index.php
login.php
newcomment.php
newreport.php
register.php
search.php
showhistory.php
showreport.php
viewattachment.php
vote.php

index 6e07e3461be042199c914a306cd18ef5c8cd83d3..8d9cb6555acaf52d8f1e2669cf2a664e8107b7ca 100755 (executable)
@@ -15,6 +15,8 @@ $fetchtemplates = array(
        'editattach'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 if (isset($bugsys->in['attachmentid']))
index dc3f105308e2c26272c720a3537a1fc2026ba626..0a85ddb1aba7a3d292aa200317f60eae75c74919 100644 (file)
@@ -14,6 +14,8 @@ $fetchtemplates = array(
        'editcomment'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 $comment = $db->query_first("
index 7eb8b94214338c9cadb465d4830af542f64385e3..e25c2c01b507454c1ed99f6ff9b492a6e453d47c 100644 (file)
@@ -15,6 +15,8 @@ $fetchtemplates = array(
        'pcv_select_row'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 $bug = $db->query_first("
index bbad2e2fddf6138c0b30bf3689eb5c3ce40d1b44..d6c770a1a12a33441f4bd523323a4aaff42aa032 100644 (file)
@@ -10,6 +10,8 @@
 || ################################################################### ||
 \*=====================================================================*/
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 if (!$bugsys->userinfo['userid'])
index 77ced64aee9779d13eda3040c85d3bf4f9a254de..15773b5b78e3d252ab77e2937216a39490552d6e 100644 (file)
--- a/index.php
+++ b/index.php
@@ -15,6 +15,8 @@ $fetchtemplates = array(
        'trackerhome_bits'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 if (!can_perform('canviewbugs'))
index a2adcc181e625572e617a498ebf5a1a1da433460..4340c0a233413edab6561b8c5e06e576177644ab 100755 (executable)
--- a/login.php
+++ b/login.php
@@ -14,6 +14,8 @@ $fetchtemplates = array(
        'login'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 // ###################################################################
index fcdb10d356b48f29b5d5a7743ca93a173c694fa4..52d033e808229e4dfcb816c0f71d7d92050f5906 100644 (file)
@@ -14,6 +14,8 @@ $fetchtemplates = array(
        'newcomment'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 if (!can_perform('canpostcomments'))
index 766be8627ea9eb067a939ee62513bc4020d6ce4e..f3c830abc6a078686e54e0b596381bca37105aa4 100755 (executable)
@@ -15,6 +15,8 @@ $fetchtemplates = array(
        'pcv_select_row'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 if (!can_perform('cansubmitbugs'))
index 84aef95fbb3b5c9f28aa887bd311f48b10b5b0f1..0fad45dbbad5a76efdb8000b4f5be19ab07991de 100755 (executable)
@@ -14,6 +14,8 @@ $fetchtemplates = array(
        'register'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 // ###################################################################
index c55038629248abfaf5b9263df44ebfa61c947c52..5f9e733758c62e3d62aae5e1c69616bc2a27544f 100644 (file)
@@ -15,6 +15,8 @@ $fetchtemplates = array(
        'search_results'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 if (!can_perform('cansearch'))
index 68195b8c2e461daa3136c63ba91472bcaed20c88..d10212b44643a6b0bf4a78776781c0ed15f33bfa 100644 (file)
@@ -16,6 +16,8 @@ $fetchtemplates = array(
        'history_bit'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = " . intval($bugsys->in['bugid']));
index 5671136eb8cb717f000b606f45dd359d7219d068..9be557d8a808e5eaebb7b8076de1ce7a4d0c5201 100644 (file)
@@ -16,6 +16,8 @@ $fetchtemplates = array(
        'showreport_comment'
 );
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 if (!can_perform('canviewbugs'))
index c7c4bd016fa2ca89b97b96f3a0a0eaa33ba53e17..2ab691228dcf60e20e9410794e9c10c692ea299d 100755 (executable)
@@ -12,6 +12,8 @@
 
 ob_start();
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 $attachment = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "attachment WHERE attachmentid = " . intval($bugsys->in['attachmentid']));
index f121ebadc0839b2eb34a9675d679eb40a2a5b8ba..e4d30435bcd04639b5f630160e3ee0f9c77c0984 100644 (file)
--- a/vote.php
+++ b/vote.php
@@ -10,6 +10,8 @@
 || ################################################################### ||
 \*=====================================================================*/
 
+define('SVN', '$Id$');
+
 require_once('./global.php');
 
 // ###################################################################