Ignore:
Timestamp:
Dec 18, 2005 12:16:03 AM (18 years ago)
Author:
scdev
Message:

detabbed all files ;P

Location:
trunk/services/templates
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/services/templates/admin_list.ihtml

    r41 r42  
    66    <span class="nowrap commandtext"><a href="<?php echo App::oHREF($_SERVER['PHP_SELF'] . '?op=add'); ?>"><?php echo _("Add administrator"); ?></a></span>
    77    <br />
    8    
     8
    99    <input type="text" class="small" size="20" name="search_query" value="<?php echo getFormData('search_query'); ?>" title="<?php echo oTxt(_("Fields searched: Admin id, Username, Userpass, First name, Last name, Email, User type, Login abuse exempt, Blocked, Blocked reason, Abuse warning level, Seconds online, Last login datetime, Last access datetime, Last login ip, Added by user id, Modified by user id, Added datetime, Modified datetime.")); ?>" />
    1010    <input type="submit" value="<?php echo _("Search"); ?>" />
  • trunk/services/templates/list_info.ihtml

    r41 r42  
    44    <?php } ?>
    55    <span class="nowrap commanditem commandtext">
    6         <?php printf(_("Listing <strong>%s-%s</strong> of <strong>%s</strong> results on <strong>%s</strong> pages"), (0==$page->total_items ? 0 : $page->first_item+1), (0==$page->total_items ? 0 : $page->last_item+1), $page->total_items, $page->total_pages) ?> 
     6        <?php printf(_("Listing <strong>%s-%s</strong> of <strong>%s</strong> results on <strong>%s</strong> pages"), (0==$page->total_items ? 0 : $page->first_item+1), (0==$page->total_items ? 0 : $page->last_item+1), $page->total_items, $page->total_pages) ?>
    77        &nbsp;&nbsp; <a href="<?php echo App::oHREF($_SERVER['PHP_SELF'], false); ?>"><?php echo _("List all"); ?></a>
    88        &nbsp;&nbsp; <?php echo _("Per page"); ?>:&nbsp;<?php $page->printPerPageLinks() ?>
  • trunk/services/templates/lock.ihtml

    r41 r42  
    1 <?php 
     1<?php
    22if (!is_a($lock, 'RecordLock')) {
    33    return null;
     
    99
    1010    <p><?php
    11     printf(_("The record <strong>%s</strong> is currently being edited by <strong>%s</strong> (%d minutes elapsed). You cannot modify the record while it is locked by another user."), 
    12         $lock->getTitle(), 
    13         $lock->getEditor(), 
     11    printf(_("The record <strong>%s</strong> is currently being edited by <strong>%s</strong> (%d minutes elapsed). You cannot modify the record while it is locked by another user."),
     12        $lock->getTitle(),
     13        $lock->getEditor(),
    1414        date('i', $lock->getSecondsElapsed() + 60)
    1515    );
  • trunk/services/templates/versions_diff.ihtml

    r41 r42  
    1 <div id="commandbox">               
     1<div id="commandbox">
    22<?php if (!getFormData('current', false)) { ?>
    33    <span class="nowrap commandtext"><a href="<?php echo App::oHREF($_SERVER['PHP_SELF'] . '?op=restore', array('version_id', 'version_title')); ?>"><?php echo _("Restore this saved version"); ?></a></span>
  • trunk/services/templates/versions_list.ihtml

    r41 r42  
    99    <th class="padleft"><?php echo _("By"); ?></th>
    1010</tr>
    11 <?php 
     11<?php
    1212$first = true;
    1313foreach ($versions as $v) { ?>
     
    2525    <td class="padleft nowrap"><?php echo $v['editor']; ?></td>
    2626</tr>
    27 <?php 
     27<?php
    2828$first = false;
    29 } 
     29}
    3030?>
    3131</table>
  • trunk/services/templates/versions_view.ihtml

    r41 r42  
    1 <div id="commandbox">               
     1<div id="commandbox">
    22<?php if (!getFormData('current', false)) { ?>
    33    <span class="nowrap commandtext"><a href="<?php echo App::oHREF($_SERVER['PHP_SELF'] . '?op=restore', array('version_id', 'version_title')); ?>"><?php echo _("Restore this saved version"); ?></a></span>
     
    1010<table class="list" border="0" cellspacing="0" cellpadding="4">
    1111<?php
    12 while ((list($k, $v_d) = each($data))) { 
     12while ((list($k, $v_d) = each($data))) {
    1313    ?>
    1414    <tr>
Note: See TracChangeset for help on using the changeset viewer.