|
From: Benjamin C. <bc...@us...> - 2004-07-13 13:05:41
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1364/templates/default/admin Modified Files: Tag: htmltemplates oslist.html Log Message: Removing smarty references Index: oslist.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/oslist.html,v retrieving revision 1.9.6.1 retrieving revision 1.9.6.2 diff -u -r1.9.6.1 -r1.9.6.2 --- oslist.html 30 Aug 2003 21:59:37 -0000 1.9.6.1 +++ oslist.html 13 Jul 2004 13:05:28 -0000 1.9.6.2 @@ -10,7 +10,7 @@ <table border="0" width="100%"> <tr> <td valign="top"> - <b> <?php echo $page_title; ?></b> - <a href="<?php echo $_SERVER['SCRIPT_NAME']; ?>?op=edit&os_id=0" onClick="popupOS(0); return false;"><?php echo translate("Add new operating system"); ?></a> + <b> <?php echo $page_title; ?></b> - <a href="os.php?op=edit&os_id=0" onClick="popupOS(0); return false;"><?php echo translate("Add new operating system"); ?></a> <hr size="1"> <table class="bordertable" align="center"> <tr> @@ -21,12 +21,12 @@ </tr> <?php for ($i = 0, $count = count($oses); $i < $count; $i++) { ?> <tr> - <td><a href="<?php echo $_SERVER['SCRIPT_NAME']; ?>?op=edit&os_id=<?php echo $oses[$i]['os_id']; ?>" onClick="popupOS(<?php echo $oses[$i]['os_id']; ?>); return false;"><?php echo stripslashes($oses[$i]['os_name']); ?></a></td> + <td><a href="os.php?op=edit&os_id=<?php echo $oses[$i]['os_id']; ?>" onClick="popupOS(<?php echo $oses[$i]['os_id']; ?>); return false;"><?php echo stripslashes($oses[$i]['os_name']); ?></a></td> <td> <?php echo $oses[$i]['regex']; ?></td> <td align="center"><?php echo $oses[$i]['sort_order']; ?></td> <td align="center"> <?php if (!$oses[$i]['bug_count']) { ?> - <a href="{$smarty.server.PHP_SELF}?op=del&os_id=<?php echo $oses[$i]['os_id']; ?>" onClick="return confirm('<?php echo translate("Are you sure you want to delete this OS"); ?>?')"><?php echo translate("Delete"); ?></a> + <a href="os.php?op=del&os_id=<?php echo $oses[$i]['os_id']; ?>" onClick="return confirm('<?php echo translate("Are you sure you want to delete this OS"); ?>?')"><?php echo translate("Delete"); ?></a> <?php } ?> </td> </tr> |