#30494 closed defect (bug) (worksforme)
$GLOBALS['pagenow'] is empty under the case wp-login.php
Reported by: | dallaslu | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 4.0.1 |
Component: | Login and Registration | Keywords: | |
Focuses: | Cc: |
Description
as the title.
Change History (6)
#3
@
10 years ago
I am using:
function useso_take_over_google_is_login_page() { //global $pagenow; return in_array($_SERVER['PHP_SELF'], array('/wp-login.php', '/wp-register.php')); }
It works.
#4
in reply to:
↑ 1
@
10 years ago
Replying to voldemortensen:
Could you provide some more information about the issue? $_GLOBALSpagenow? is never used in wp-login.php. Is there something you are trying to do with pagenow?
function useso_take_over_google_is_login_page() { return in_array($GLOBALS['pagenow'], array('wp-login.php', 'wp-register.php')); }
this function will never return true.
#5
in reply to:
↑ 2
@
10 years ago
Replying to DrewAPicture:
This and 'Login and Registratio' is no absolute relationship.
Note: See
TracTickets for help on using
tickets.
Could you provide some more information about the issue?
$_GLOBALS['pagenow']
is never used in wp-login.php. Is there something you are trying to do with pagenow?