From: Carsten K. <car...@us...> - 2001-12-01 13:06:16
|
Update of /cvsroot/phpwiki/phpwiki/lib In directory usw-pr-cvs1:/tmp/cvs-serv31198/phpwiki/lib Modified Files: removepage.php Log Message: Moved hyperlink in delete-page confirmation to clarify. Index: removepage.php =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/lib/removepage.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** removepage.php 2001/11/08 16:02:40 1.1 --- removepage.php 2001/12/01 13:06:13 1.2 *************** *** 6,14 **** htmlspecialchars($pagename)); $html .= "\n<P>"; ! $html .= sprintf(gettext ("Click <a href=\"%s\">here</a> to remove the page now."), htmlspecialchars(WikiURL($pagename, array('action' => 'remove', 'verify' => 'okay')))); $html .= "\n<P>"; ! $html .= gettext ("Otherwise press the \"Back\" button of your browser."); } else { --- 6,14 ---- htmlspecialchars($pagename)); $html .= "\n<P>"; ! $html .= sprintf(gettext ("Click here to <a href=\"%s\">remove the page now</a>."), htmlspecialchars(WikiURL($pagename, array('action' => 'remove', 'verify' => 'okay')))); $html .= "\n<P>"; ! $html .= gettext ("To cancel press the \"Back\" button of your browser."); } else { |