Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
e7fd76a1
Commit
e7fd76a1
authored
Oct 20, 2001
by
natrak
Browse files
- added the CVS keyword $Id$ to all files to make future version tracking
easier. Also changed the <? tag to <?php in some cases.
parent
864c18d4
Changes
19
Hide whitespace changes
Inline
Side-by-side
.htaccess
View file @
e7fd76a1
#
# Apache/PHP/site settings:
# $Id$
#
# Protect files and directories from prying eyes:
...
...
admin.php
View file @
e7fd76a1
<?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
includes/comment.inc
View file @
e7fd76a1
<?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) {
}
}
?>
includes/locale.inc
View file @
e7fd76a1
<?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
includes/node.inc
View file @
e7fd76a1
<?php
// $Id$
$status
=
array
(
dumped
=>
0
,
expired
=>
1
,
queued
=>
2
,
posted
=>
3
);
...
...
@@ -296,5 +297,5 @@ function node_moderation($nid) {
return
$output
;
}
?>
includes/search.inc
View file @
e7fd76a1
<?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
();
}
?>
includes/variable.inc
View file @
e7fd76a1
<?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
module.php
View file @
e7fd76a1
<?php
// $Id$
include_once
"includes/common.inc"
;
...
...
@@ -7,5 +8,5 @@
module_invoke
(
$mod
,
"page"
);
page_footer
();
?>
modules/box.module
View file @
e7fd76a1
<?php
// $Id$
// $Id$
function
box_help
()
{
?>
...
...
@@ -137,5 +139,5 @@ function box_admin() {
print
message_access
();
}
}
?>
\ No newline at end of file
modules/calendar.module
View file @
e7fd76a1
<?php
// $Id$
class
Calendar
{
var
$date
;
...
...
@@ -99,5 +100,5 @@ function calendar_block() {
return
$block
;
}
?>
modules/cloud.module
View file @
e7fd76a1
<?
<?php
// $Id$
function
cloud_help
()
{
}
...
...
modules/cvs.module
View file @
e7fd76a1
<?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
modules/meta.module
View file @
e7fd76a1
<?php
// $Id$
function
meta_help
()
{
?>
...
...
@@ -189,5 +190,5 @@ function meta_admin() {
print
message_access
();
}
}
?>
\ No newline at end of file
modules/rating.module
View file @
e7fd76a1
<?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
;
}
?>
modules/weblogs.module
View file @
e7fd76a1
<?
<?php
// $Id$
function
weblogs_cron
()
{
...
...
node.php
View file @
e7fd76a1
<?php
// $Id$
include_once
"includes/common.inc"
;
...
...
@@ -122,5 +123,5 @@ function node_history($node) {
}
page_footer
();
?>
\ No newline at end of file
submit.php
View file @
e7fd76a1
<?php
// $Id$
include_once
"includes/common.inc"
;
...
...
@@ -32,5 +33,5 @@
$theme
->
footer
();
page_footer
();
?>
themes/goofy/goofy.theme
View file @
e7fd76a1
<?php
// $Id$
/*********************************************************************
...
...
@@ -153,5 +154,5 @@ function footer() {
<?
} // close footer function
} // close theme-class
?>
updates/3.00-to-x.xx.php
View file @
e7fd76a1
<?php
// $Id$
/*
** Move this file to the root of your Drupal tree and access it (execute
...
...
@@ -23,5 +24,5 @@
print
"done (
$count
)<br />"
;
}
}
?>
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment