Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
From: Reini Urban <rurban@us...> - 2005-05-06 17:55:47
|
Update of /cvsroot/phpwiki/phpwiki/themes/default/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15659 Modified Files: editpage.tmpl Log Message: conditionalize CAPTCHA Index: editpage.tmpl =================================================================== RCS file: /cvsroot/phpwiki/phpwiki/themes/default/templates/editpage.tmpl,v retrieving revision 1.56 retrieving revision 1.57 diff -u -2 -b -p -d -r1.56 -r1.57 --- editpage.tmpl 25 Apr 2005 20:17:15 -0000 1.56 +++ editpage.tmpl 6 May 2005 17:53:20 -0000 1.57 @@ -47,9 +47,10 @@ <label for="edit[summary]"><?=_("Summary").':'?></label> <?=$SUMMARY_INPUT?> </div> +<?php if (ENABLE_CAPTCHA) { ?> <div class="toolbar" style="text-align: center;"> <?php echo $CAPTCHA_IMAGE ?><br/> - <?php echo $CAPTCHA_LABEL ?> - <?= $CAPTCHA_INPUT ?> + <?php echo $CAPTCHA_LABEL ?><?= $CAPTCHA_INPUT ?> </div> +<?php } ?> <table summary="Toolbar: Page editing options." class="toolbar" width="100%" cellpadding="0" cellspacing="0" border="0"> |