Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
293
Merge Requests
293
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
1fe8d6b1
Commit
1fe8d6b1
authored
Mar 05, 2002
by
Kjartan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- more typo bugs.
parent
e3d2c46f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
modules/user.module
modules/user.module
+1
-1
modules/user/user.module
modules/user/user.module
+1
-1
update.php
update.php
+1
-1
No files found.
modules/user.module
View file @
1fe8d6b1
...
...
@@ -484,7 +484,7 @@ function user_block() {
// Who's online block
$time
=
60
*
60
;
// minutes * seconds
$limit
=
0
;
// List the X most recent people
$limit
=
5
;
// List the X most recent people
$result
=
db_query
(
"SELECT uid, name FROM users WHERE timestamp > unix_timestamp() - (
$time
) ORDER BY timestamp DESC LIMIT
$limit
"
);
...
...
modules/user/user.module
View file @
1fe8d6b1
...
...
@@ -484,7 +484,7 @@ function user_block() {
// Who's online block
$time
=
60
*
60
;
// minutes * seconds
$limit
=
0
;
// List the X most recent people
$limit
=
5
;
// List the X most recent people
$result
=
db_query
(
"SELECT uid, name FROM users WHERE timestamp > unix_timestamp() - (
$time
) ORDER BY timestamp DESC LIMIT
$limit
"
);
...
...
update.php
View file @
1fe8d6b1
...
...
@@ -334,7 +334,7 @@ function update_22() {
}
function
update_23
()
{
update_sql
(
"CREATE TABLE search_index (word varchar(50) default NULL, lno int(10) unsigned default NULL, type varchar(16) default NULL, count int(10) unsigned default NULL, KEY lno (lno), KEY word (word);"
);
update_sql
(
"CREATE TABLE search_index (word varchar(50) default NULL, lno int(10) unsigned default NULL, type varchar(16) default NULL, count int(10) unsigned default NULL, KEY lno (lno), KEY word (word)
)
;"
);
}
/*
...
...
Write
Preview
Markdown
is supported
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