cvs: docweb /templates/all/www checkent.tpl.php
[email protected] ("Sean Coates")
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <cvssean1106684102@cvsserver> |
sean Tue Jan 25 15:15:02 2005 EDT
Modified files:
/docweb/templates/all/www checkent.tpl.php
Log:
WS
http://cvs.php.net/diff.php/docweb/templates/all/www/checkent.tpl.php?r1=1.5&r2=1.6&ty=u
Index: docweb/templates/all/www/checkent.tpl.php
diff -u docweb/templates/all/www/checkent.tpl.php:1.5 docweb/templates/all/www/checkent.tpl.php:1.6
--- docweb/templates/all/www/checkent.tpl.php:1.5 Tue Jan 25 15:05:18 2005
+++ docweb/templates/all/www/checkent.tpl.php Tue Jan 25 15:15:01 2005
@@ -1,4 +1,5 @@
<?php
+// vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4:
/*
TODO:
- language-entity this
@@ -23,40 +24,40 @@
<tr>
<th>Entity Name</th>
<?php if ($extraCol[$resultType]) { ?>
- <?php if ($wideMode) { ?>
+ <?php if ($wideMode) { ?>
<th>URL</th>
- <?php } ?>
+ <?php } ?>
<th>Redirect URL</th>
<?php } else { ?>
<th>URL</th>
- <?php } ?>
+ <?php } ?>
</tr>
<?php foreach ($results AS $r) { ?>
<tr>
<?php if ($extraCol[$resultType]) { ?>
- <?php if ($wideMode) { ?>
+ <?php if ($wideMode) { ?>
<td><?php echo $r['entity']; ?></td>
<td><a href="<?php echo $r['url']; ?>" rel="nofollow"><?php echo $r['url']; ?></a></td>
<td><a href="<?php echo $r['return_val']; ?>" rel="nofollow"><?php echo $r['return_val']; ?></a></td>
- <?php } else { ?>
+ <?php } else { ?>
<td><a href="<?php echo $r['url']; ?>"><?php echo $r['entity']; ?></a></td>
<td>
- <a href="<?php echo $r['return_val']; ?>" rel="nofollow" title="<?php echo $r['return_val']; ?>">
- <?php echo str_chop($r['return_val'], 60, TRUE); ?>
- </a>
- </td>
- <?php } ?>
+ <a href="<?php echo $r['return_val']; ?>" rel="nofollow" title="<?php echo $r['return_val']; ?>">
+ <?php echo str_chop($r['return_val'], 60, TRUE); ?>
+ </a>
+ </td>
+ <?php } ?>
<?php } else { ?>
<td><?php echo $r['entity']; ?></td>
- <?php if ($wideMode) { ?>
+ <?php if ($wideMode) { ?>
<td><a href="<?php echo $r['url']; ?>" rel="nofollow"><?php echo $r['url']; ?></a></td>
- <?php } else { ?>
- <td>
- <a href="<?php echo $r['url']; ?>" rel="nofollow" title="<?php echo $r['url']; ?>">
- <?php echo str_chop($r['url'], 60, TRUE); ?>
- </a>
- </td>
- <?php } ?>
+ <?php } else { ?>
+ <td>
+ <a href="<?php echo $r['url']; ?>" rel="nofollow" title="<?php echo $r['url']; ?>">
+ <?php echo str_chop($r['url'], 60, TRUE); ?>
+ </a>
+ </td>
+ <?php } ?>
<?php } ?>
</tr>
<?php } ?>