Skip to content

Commit

Permalink
TWEAK: Added suggestion to leave token blank when adding new entry (t…
Browse files Browse the repository at this point in the history
…okens should be generated using 'tokenify' function).

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@225 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Apr 14, 2003
1 parent 450d7d5 commit e16e84d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion admin/tokens.php
Expand Up @@ -691,7 +691,12 @@
echo "</tr>\n";
echo "<tr>\n";
echo "\t<td align='right' width='20%'>$setfont<b>Token:</b></td>\n";
echo "\t<td bgcolor='#EEEEEE'>$setfont<input type='text' size='15' $slstyle name='token' value='$token'></td>\n";
echo "\t<td bgcolor='#EEEEEE'>$setfont<input type='text' size='15' $slstyle name='token' value='$token'>\n";
if ($action == "add")
{
echo "\t\t$setfont<font size='1' color='red'>You should leave this blank and generate the token using 'tokenify'</font></font>\n";
}
echo "\t</td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "\t<td align='right' width='20%'>$setfont<b>Sent?:</b></td>\n";
Expand Down

0 comments on commit e16e84d

Please sign in to comment.