diff options
author | natrak <> | 2001-10-20 18:57:10 +0000 |
---|---|---|
committer | natrak <> | 2001-10-20 18:57:10 +0000 |
commit | e7fd76a1c96b254e904ac7bc661c1cf879a91157 (patch) | |
tree | f7f2979ce014e9dbc33c48b91fbfc32e774612fb /includes | |
parent | 864c18d4c3a26249357c1ba5b986e9f6d8d89082 (diff) | |
download | brdo-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.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/comment.inc | 3 | ||||
-rw-r--r-- | includes/locale.inc | 3 | ||||
-rw-r--r-- | includes/node.inc | 3 | ||||
-rw-r--r-- | includes/search.inc | 3 | ||||
-rw-r--r-- | includes/variable.inc | 3 |
5 files changed, 10 insertions, 5 deletions
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 |