Get Action Lists the History of a Page
Get Parameters- pageName - The name of the page to display the history of
Server Side Javascript for GET method if(typeof(pageName)=="undefined")
{
transaction.setResult(transaction.SHOW_PAGE);
}
else
{
user = transaction.getUser();
page = wiki.buildHistoryPage(pageName);
transaction.sendPage(page);
} by Admin on 21/04/2008 at 10:08 PM |
|