summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-08-11 12:57:41 +0000
committerDries Buytaert <dries@buytaert.net>2005-08-11 12:57:41 +0000
commitb69b43d1ec06658b8f7d785196f0168b1adbf5bd (patch)
tree87fd62da91b9174b59dc2e3cec77a55b09307e4b
parentceb013278e4846f6e77cbea12660a9644f9783f5 (diff)
downloadbrdo-b69b43d1ec06658b8f7d785196f0168b1adbf5bd.tar.gz
brdo-b69b43d1ec06658b8f7d785196f0168b1adbf5bd.tar.bz2
- Patch #28482 by Uwe: add CVS $Id$ tags to all source files in Drupal core. This allows admins to know exactly which version of which files they use. In addition I want to use CVS $Id$ tags in my upcoming security.module to check for possible vulnerabilities. That's not possible if some files simply don't have $Id$s.
Note: I also (mostly) unified the tags to use the "// ID" form instead of "/* ID */", but that's more of a cosmetic issue. I'm not sure whether *.txt files and the stuff in themes/ need tags(?).
-rw-r--r--database/updates.inc2
-rw-r--r--includes/common.inc2
-rw-r--r--includes/file.inc2
-rw-r--r--includes/menu.inc2
-rw-r--r--includes/theme.inc2
-rw-r--r--includes/xmlrpc.inc2
-rw-r--r--includes/xmlrpcs.inc3
7 files changed, 9 insertions, 6 deletions
diff --git a/database/updates.inc b/database/updates.inc
index f63048ff9..435af3373 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -1,5 +1,5 @@
<?php
-/* $Id$ */
+// $Id$
/**
* @file
diff --git a/includes/common.inc b/includes/common.inc
index 684112c61..c38743c54 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -1,5 +1,5 @@
<?php
-/* $Id$ */
+// $Id$
/**
* @file
diff --git a/includes/file.inc b/includes/file.inc
index 090eb788c..dd34be719 100644
--- a/includes/file.inc
+++ b/includes/file.inc
@@ -1,5 +1,5 @@
<?php
-/* $Id$ */
+// $Id$
/**
* @file
diff --git a/includes/menu.inc b/includes/menu.inc
index 67b474b3a..4e2ea4db4 100644
--- a/includes/menu.inc
+++ b/includes/menu.inc
@@ -1,5 +1,5 @@
<?php
-/* $Id$ */
+// $Id$
/**
* @file
diff --git a/includes/theme.inc b/includes/theme.inc
index 04add76e6..559640e8c 100644
--- a/includes/theme.inc
+++ b/includes/theme.inc
@@ -1,5 +1,5 @@
<?php
-/* $Id$ */
+// $Id$
/**
* @file
diff --git a/includes/xmlrpc.inc b/includes/xmlrpc.inc
index dd5647f0b..b8cbad4dd 100644
--- a/includes/xmlrpc.inc
+++ b/includes/xmlrpc.inc
@@ -1,4 +1,6 @@
<?php
+// $Id$
+
/*
Drupal XML-RPC library. Based on the IXR - The Incutio XML-RPC Library - (c) Incutio Ltd 2002-2005
Version 1.7 (beta) - Simon Willison, 23rd May 2005
diff --git a/includes/xmlrpcs.inc b/includes/xmlrpcs.inc
index f50b3d788..49023b942 100644
--- a/includes/xmlrpcs.inc
+++ b/includes/xmlrpcs.inc
@@ -1,4 +1,5 @@
<?php
+// $Id$
function xmlrpc_server($callbacks) {
$xmlrpc_server = new stdClass();
@@ -282,4 +283,4 @@ function xmlrpc_server_method_help($xmlrpc_server, $method) {
return $xmlrpc_server->help[$method];
}
-?> \ No newline at end of file
+?>