Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
d7f706f2
Commit
d7f706f2
authored
Nov 27, 2008
by
Angie Byron
Browse files
Reverting
#337820
once more, as it causes mysterious test failures.
parent
74f2efd5
Changes
6
Hide whitespace changes
Inline
Side-by-side
modules/locale/locale.test
View file @
d7f706f2
...
...
@@ -55,7 +55,7 @@ class LocaleTestCase extends DrupalWebTestCase {
// No t() here, we do not want to add this string to the database and it's
// surely not translated yet.
$this
->
assertText
(
$native
,
'Test language added'
);
$this
->
drupal
L
ogout
(
);
$this
->
drupal
Get
(
'l
ogout
'
);
// Search for the name and translate it.
$this
->
drupalLogin
(
$translate_user
);
...
...
@@ -87,7 +87,7 @@ class LocaleTestCase extends DrupalWebTestCase {
$this
->
drupalPost
(
'admin/build/translate/search'
,
$search
,
t
(
'Search'
));
// The indicator should not be here.
$this
->
assertNoRaw
(
$language_indicator
,
'String is translated'
);
$this
->
drupal
L
ogout
(
);
$this
->
drupal
Get
(
'l
ogout
'
);
// Delete the language.
$this
->
drupalLogin
(
$admin_user
);
...
...
@@ -101,7 +101,7 @@ class LocaleTestCase extends DrupalWebTestCase {
$this
->
assertNoText
(
$langcode
,
'Language code not found'
);
$this
->
assertNoText
(
$name
,
'Name not found'
);
$this
->
assertNoText
(
$native
,
'Native not found'
);
$this
->
drupal
L
ogout
(
);
$this
->
drupal
Get
(
'l
ogout
'
);
// Delete the name string.
$this
->
drupalLogin
(
$translate_user
);
...
...
modules/poll/poll.test
View file @
d7f706f2
...
...
@@ -106,7 +106,7 @@ class PollVoteTestCase extends PollTestCase {
$title
=
$this
->
randomName
();
$choices
=
$this
->
_generateChoices
(
7
);
$poll_nid
=
$this
->
pollCreate
(
$title
,
$choices
,
FALSE
);
$this
->
drupal
L
ogout
(
);
$this
->
drupal
Get
(
'l
ogout
'
);
$web_user
=
$this
->
drupalCreateUser
(
array
(
'cancel own vote'
,
'inspect all votes'
,
'vote on polls'
,
'access content'
));
$this
->
drupalLogin
(
$web_user
);
...
...
modules/simpletest/drupal_web_test_case.php
View file @
d7f706f2
...
...
@@ -745,7 +745,7 @@ protected function drupalLogin($user = NULL) {
*/
protected
function
drupalLogout
()
{
// Make a request to the logout page.
$this
->
drupalGet
(
'
user/
logout'
);
$this
->
drupalGet
(
'logout'
);
// Load the user page, the idea being if you were properly logged out you should be seeing a login screen.
$this
->
drupalGet
(
'user'
);
...
...
modules/system/system.install
View file @
d7f706f2
...
...
@@ -3132,16 +3132,6 @@ function system_update_7014() {
return
$ret
;
}
/**
* Change the user logout path.
*/
function
system_update_7015
()
{
$ret
=
array
();
$ret
[]
=
update_sql
(
"UPDATE
{
menu_links
}
SET link_path = 'user/logout' WHERE link_path = 'logout'"
);
$ret
[]
=
update_sql
(
"UPDATE
{
menu_links
}
SET router_path = 'user/logout' WHERE router_path = 'logout'"
);
return
$ret
;
}
/**
* @} End of "defgroup updates-6.x-to-7.x"
* The next series of updates should start at 8000.
...
...
modules/user/user.module
View file @
d7f706f2
...
...
@@ -977,13 +977,6 @@ function user_menu() {
'type'
=>
MENU_CALLBACK
,
);
$items
[
'user/logout'
]
=
array
(
'title'
=>
'Log out'
,
'access callback'
=>
'user_is_logged_in'
,
'page callback'
=>
'user_logout'
,
'weight'
=>
10
,
);
// User administration pages.
$items
[
'admin/user'
]
=
array
(
'title'
=>
'User management'
,
...
...
@@ -1040,6 +1033,13 @@ function user_menu() {
'type'
=>
MENU_CALLBACK
,
);
$items
[
'logout'
]
=
array
(
'title'
=>
'Log out'
,
'access callback'
=>
'user_is_logged_in'
,
'page callback'
=>
'user_logout'
,
'weight'
=>
10
,
);
$items
[
'user/%user_uid_optional'
]
=
array
(
'title'
=>
'My account'
,
'title callback'
=>
'user_page_title'
,
...
...
robots.txt
View file @
d7f706f2
...
...
@@ -43,19 +43,19 @@ Disallow: /xmlrpc.php
Disallow: /admin/
Disallow: /comment/reply/
Disallow: /contact/
Disallow: /logout/
Disallow: /node/add/
Disallow: /search/
Disallow: /user/register/
Disallow: /user/password/
Disallow: /user/login/
Disallow: /user/logout/
# Paths (no clean URLs)
Disallow: /?q=admin/
Disallow: /?q=comment/reply/
Disallow: /?q=contact/
Disallow: /?q=logout/
Disallow: /?q=node/add/
Disallow: /?q=search/
Disallow: /?q=user/password/
Disallow: /?q=user/register/
Disallow: /?q=user/login/
Disallow: /?q=user/logout/
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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