diff options
Diffstat (limited to 'includes/actions/WatchAction.php')
-rw-r--r-- | includes/actions/WatchAction.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/actions/WatchAction.php b/includes/actions/WatchAction.php index 96473409..8b6e329d 100644 --- a/includes/actions/WatchAction.php +++ b/includes/actions/WatchAction.php @@ -64,7 +64,7 @@ class WatchAction extends FormAction { $this->checkCanExecute( $user ); // Must have valid token for this action/title - $salt = array( $this->getName(), $this->getTitle()->getDBkey() ); + $salt = array( $this->getName(), $this->getTitle()->getPrefixedDBkey() ); if ( $user->matchEditToken( $this->getRequest()->getVal( 'token' ), $salt ) ) { $this->onSubmit( array() ); |