Skip to content

Commit

Permalink
The login.inc.php file have end lines corrected.
Browse files Browse the repository at this point in the history
Probaly cause of authetication problem. 8-)
  • Loading branch information
carlosdelfino committed Jun 3, 2011
1 parent 0cd7fa2 commit 11f6fbd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
*.lck
*.LCK
_notes
/uploads
uploads
*.orig
.buildpath
.project
Expand Down
12 changes: 6 additions & 6 deletions include/client/login.inc.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
if(!defined('OSTCLIENTINC')) die('Kwaheri');

$e=Format::input($_POST['lemail']?$_POST['lemail']:$_GET['e']);
$t=Format::input($_POST['lticket']?$_POST['lticket']:$_GET['t']);
$e=Format::input($_POST['lemail']?$_POST['lemail']:$_GET['e']);
$t=Format::input($_POST['lticket']?$_POST['lticket']:$_GET['t']);
?>
<div>
<?if($errors['err']) {?>
Expand All @@ -12,15 +12,15 @@
<?}?>
</div>
<div style="margin:5px 0px 100px 0;text-align:center; width:100%;">
<p align="center"><?php echo $trl->translate('TEXT_LOGIN_VIEW_STATUS_OF_TICKET');?>;
<p align="center"><?php echo $trl->translate('TEXT_LOGIN_VIEW_STATUS_OF_TICKET');?>;
</p>
<span class="error"><?=Format::htmlchars($loginmsg)?></span>
<form action="login.php" method="post">
<table cellspacing="1" cellpadding="5" border="0" bgcolor="#000000" align="center">
<tr bgcolor="#EEEEEE">
<td><?php echo $trl->translate('LABEL_EMAIL'); ?>:</td><td><input type="text" name="lemail" size="25" value="<?=$e?>"></td>
<td><?php echo $trl->translate('LABEL_TICKET_ID')?>:</td><td><input type="text" name="lticket" size="10" value="<?=$t?>"></td>
<td><input class="button" type="submit" value="<?php echo $trl->translate('LABEL_VIEW_STATUS');?>"></td>
<td><?php echo $trl->translate('LABEL_EMAIL'); ?>:</td><td><input type="text" name="lemail" size="25" value="<?=$e?>"></td>
<td><?php echo $trl->translate('LABEL_TICKET_ID')?>:</td><td><input type="text" name="lticket" size="10" value="<?=$t?>"></td>
<td><input class="button" type="submit" value="<?php echo $trl->translate('LABEL_VIEW_STATUS');?>"></td>
</tr>
</table>
</form>
Expand Down

0 comments on commit 11f6fbd

Please sign in to comment.