[Openfirst-cvscommit] emoticon index.php,1.4,1.5
Brought to you by:
xtimg
From: <xt...@us...> - 2003-09-13 16:26:20
|
Update of /cvsroot/openfirst/emoticon In directory sc8-pr-cvs1:/tmp/cvs-serv29755 Modified Files: index.php Log Message: Make isset proper case for purposes of consistency. Index: index.php =================================================================== RCS file: /cvsroot/openfirst/emoticon/index.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** index.php 13 Sep 2003 15:35:01 -0000 1.4 --- index.php 13 Sep 2003 16:26:17 -0000 1.5 *************** *** 29,34 **** include($header); if(function_exists("emoticon_preview")) { ! if(! ISSET($_GET["perpage"])) { $_GET["perpage"] = 25; } ! if(! ISSET($_GET["start"])) { $_GET["start"] = 0; } echo("<h2>Emoticon Preview</h2><form action='./' method='get'> <br>Start at emoticon <input type='text' name='start' value='" . $_GET["start"] ."' size='3'> show --- 29,34 ---- include($header); if(function_exists("emoticon_preview")) { ! if(! isset($_GET["perpage"])) { $_GET["perpage"] = 25; } ! if(! isset($_GET["start"])) { $_GET["start"] = 0; } echo("<h2>Emoticon Preview</h2><form action='./' method='get'> <br>Start at emoticon <input type='text' name='start' value='" . $_GET["start"] ."' size='3'> show |