summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornatrak <>2001-10-20 18:57:10 +0000
committernatrak <>2001-10-20 18:57:10 +0000
commite7fd76a1c96b254e904ac7bc661c1cf879a91157 (patch)
treef7f2979ce014e9dbc33c48b91fbfc32e774612fb
parent864c18d4c3a26249357c1ba5b986e9f6d8d89082 (diff)
downloadbrdo-e7fd76a1c96b254e904ac7bc661c1cf879a91157.tar.gz
brdo-e7fd76a1c96b254e904ac7bc661c1cf879a91157.tar.bz2
- added the CVS keyword $Id$ to all files to make future version tracking
easier. Also changed the <? tag to <?php in some cases.
-rw-r--r--.htaccess1
-rw-r--r--admin.php3
-rw-r--r--includes/comment.inc3
-rw-r--r--includes/locale.inc3
-rw-r--r--includes/node.inc3
-rw-r--r--includes/search.inc3
-rw-r--r--includes/variable.inc3
-rw-r--r--module.php3
-rw-r--r--modules/box.module4
-rw-r--r--modules/calendar.module3
-rw-r--r--modules/cloud.module3
-rw-r--r--modules/cvs.module3
-rw-r--r--modules/meta.module3
-rw-r--r--modules/rating.module3
-rw-r--r--modules/weblogs.module3
-rw-r--r--node.php3
-rw-r--r--submit.php3
-rw-r--r--themes/goofy/goofy.theme3
-rw-r--r--updates/3.00-to-x.xx.php3
19 files changed, 38 insertions, 18 deletions
diff --git a/.htaccess b/.htaccess
index 4f83d88ee..a9d2dc4d7 100644
--- a/.htaccess
+++ b/.htaccess
@@ -1,5 +1,6 @@
#
# Apache/PHP/site settings:
+# $Id$
#
# Protect files and directories from prying eyes:
diff --git a/admin.php b/admin.php
index 1c9b0b26f..1b5e2111b 100644
--- a/admin.php
+++ b/admin.php
@@ -1,4 +1,5 @@
<?php
+// $Id$
include_once "includes/common.inc";
@@ -50,5 +51,5 @@ function admin_page($mod) {
if (user_access("access administration pages")) {
admin_page($mod);
}
-
+
?> \ No newline at end of file
diff --git a/includes/comment.inc b/includes/comment.inc
index a41489651..81c77d3df 100644
--- a/includes/comment.inc
+++ b/includes/comment.inc
@@ -1,4 +1,5 @@
<?php
+// $Id$
// Security check:
if (strstr($id, " ") || strstr($pid, " ") || strstr($lid, " ") || strstr($mode, " ") || strstr($order, " ") || strstr($threshold, " ")) {
@@ -350,5 +351,5 @@ function comment_render($lid, $cid) {
}
}
-
+
?>
diff --git a/includes/locale.inc b/includes/locale.inc
index ddd3d6b27..7f0589414 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -1,4 +1,5 @@
<?php
+// $Id$
function locale_init() {
global $languages, $user;
@@ -9,5 +10,5 @@ function t($string) {
global $languages;
return ($languages && function_exists("locale") ? locale($string) : $string);
}
-
+
?> \ No newline at end of file
diff --git a/includes/node.inc b/includes/node.inc
index 3f15fa59d..b8c6a2751 100644
--- a/includes/node.inc
+++ b/includes/node.inc
@@ -1,4 +1,5 @@
<?php
+// $Id$
$status = array(dumped => 0, expired => 1, queued => 2, posted => 3);
@@ -296,5 +297,5 @@ function node_moderation($nid) {
return $output;
}
-
+
?>
diff --git a/includes/search.inc b/includes/search.inc
index fb7a636b6..248384d74 100644
--- a/includes/search.inc
+++ b/includes/search.inc
@@ -1,4 +1,5 @@
<?php
+// $Id$
/*
** Format a single result entry of a search query:
@@ -82,5 +83,5 @@ function search_type($type = 0, $action = 0, $query = 0, $options = 0) {
return search_form($action, $query, $options) . search_data();
}
-
+
?>
diff --git a/includes/variable.inc b/includes/variable.inc
index 511965e16..7c23c4fa8 100644
--- a/includes/variable.inc
+++ b/includes/variable.inc
@@ -1,4 +1,5 @@
<?php
+// $Id$
function variable_init($conf = array()) {
$result = db_query("SELECT * FROM variable");
@@ -33,5 +34,5 @@ function variable_del($name) {
unset($conf[$name]);
}
-
+
?> \ No newline at end of file
diff --git a/module.php b/module.php
index ac6d50852..731fab274 100644
--- a/module.php
+++ b/module.php
@@ -1,4 +1,5 @@
<?php
+// $Id$
include_once "includes/common.inc";
@@ -7,5 +8,5 @@ page_header();
module_invoke($mod, "page");
page_footer();
-
+
?>
diff --git a/modules/box.module b/modules/box.module
index 283a56c8a..b24481109 100644
--- a/modules/box.module
+++ b/modules/box.module
@@ -1,4 +1,6 @@
<?php
+// $Id$
+// $Id$
function box_help() {
?>
@@ -137,5 +139,5 @@ function box_admin() {
print message_access();
}
}
-
+
?> \ No newline at end of file
diff --git a/modules/calendar.module b/modules/calendar.module
index 93c6c0ae9..dfb8aa319 100644
--- a/modules/calendar.module
+++ b/modules/calendar.module
@@ -1,4 +1,5 @@
<?php
+// $Id$
class Calendar {
var $date;
@@ -99,5 +100,5 @@ function calendar_block() {
return $block;
}
-
+
?>
diff --git a/modules/cloud.module b/modules/cloud.module
index 511087a32..4006ac775 100644
--- a/modules/cloud.module
+++ b/modules/cloud.module
@@ -1,4 +1,5 @@
-<?
+<?php
+// $Id$
function cloud_help() {
}
diff --git a/modules/cvs.module b/modules/cvs.module
index a6b2f16ab..82342c255 100644
--- a/modules/cvs.module
+++ b/modules/cvs.module
@@ -1,4 +1,5 @@
<?php
+// $Id$
function cvs_perm() {
return array("access cvs messages");
@@ -56,5 +57,5 @@ function cvs_page() {
$theme->footer();
}
}
-
+
?> \ No newline at end of file
diff --git a/modules/meta.module b/modules/meta.module
index 682069f9f..254d17e5a 100644
--- a/modules/meta.module
+++ b/modules/meta.module
@@ -1,4 +1,5 @@
<?php
+// $Id$
function meta_help() {
?>
@@ -189,5 +190,5 @@ function meta_admin() {
print message_access();
}
}
-
+
?> \ No newline at end of file
diff --git a/modules/rating.module b/modules/rating.module
index 7c17a34e7..d7e391501 100644
--- a/modules/rating.module
+++ b/modules/rating.module
@@ -1,4 +1,5 @@
<?php
+// $Id$
function rating_perm() {
return array("access user ratings");
@@ -113,5 +114,5 @@ function rating_block() {
$block[0][info] = "Top 10: users";
return $block;
}
-
+
?>
diff --git a/modules/weblogs.module b/modules/weblogs.module
index c7e31fabb..aaa21e10d 100644
--- a/modules/weblogs.module
+++ b/modules/weblogs.module
@@ -1,4 +1,5 @@
-<?
+<?php
+// $Id$
function weblogs_cron() {
diff --git a/node.php b/node.php
index 741183b39..1513fee06 100644
--- a/node.php
+++ b/node.php
@@ -1,4 +1,5 @@
<?php
+// $Id$
include_once "includes/common.inc";
@@ -122,5 +123,5 @@ else {
}
page_footer();
-
+
?> \ No newline at end of file
diff --git a/submit.php b/submit.php
index acd4b6b1c..5a221994e 100644
--- a/submit.php
+++ b/submit.php
@@ -1,4 +1,5 @@
<?php
+// $Id$
include_once "includes/common.inc";
@@ -32,5 +33,5 @@ else {
$theme->footer();
page_footer();
-
+
?>
diff --git a/themes/goofy/goofy.theme b/themes/goofy/goofy.theme
index 28737d19d..963c89b21 100644
--- a/themes/goofy/goofy.theme
+++ b/themes/goofy/goofy.theme
@@ -1,4 +1,5 @@
<?php
+// $Id$
/*********************************************************************
@@ -153,5 +154,5 @@ function c(subject,mod,author,date,body) {document.writeln("<table border=\"0\"
<?
} // close footer function
} // close theme-class
-
+
?>
diff --git a/updates/3.00-to-x.xx.php b/updates/3.00-to-x.xx.php
index 06955d4dc..fb7e252f7 100644
--- a/updates/3.00-to-x.xx.php
+++ b/updates/3.00-to-x.xx.php
@@ -1,4 +1,5 @@
<?php
+// $Id$
/*
** Move this file to the root of your Drupal tree and access it (execute
@@ -23,5 +24,5 @@ foreach (module_list() as $name) {
print "done ($count)<br />";
}
}
-
+
?> \ No newline at end of file