Subversion Repositories Applications.papyrus

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
433 ddelon 1
<?php
2
 
3
// only claim ownership if this page has no owner, and if user is logged in.
4
if ($this->page && !$this->GetPageOwner() && $this->GetUser())
5
{
6
	$this->SetPageOwner($this->GetPageTag(), $this->GetUserName());
7
	$this->SetMessage("Vous êtes maintenant le propriétaire de cette page");
8
}
9
 
10
$this->Redirect($this->href());
11
 
12
?>