Wikipedia:WikiProject User scripts/Scripts/Get Page Name

This is an old revision of this page, as edited by ST47 (talk | contribs) at 01:03, 22 October 2007 (Protected Wikipedia:WikiProject User scripts/Scripts/Get Page Name: protect against abuse - arbitrary code injection [edit=sysop:move=sysop] [cascading]). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

/*

*/
/*Returns the name of the page. For example, if you were browsing the "[[foo]]" WP page, getPname() would return "foo".*/
function getPname() {
  return wgPageName.replace(/_/g, ' ');
}
/*

*/