[solved] login.php [solved] login.php
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

[solved] login.php

Started by pcfreak, October 20, 2003, 10:17:38 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

pcfreak

Bug in login.php at line 63

<font size="1" color="red"><b>Warning your browser does not accept script's cookies<b></font>

Change script's to scripts

Its simple but its a hard bug, the lines after line 64 gives an error because this bug

Joachim Müller

hm, sorry - I don't understand: what error do you get? Grammatically you're wrong - it's not plural ("one script, two scripts"), but genitive ("Who does the cookie belong to? - To the script").
The lines you're refering to should look like this:if (!isset($HTTP_COOKIE_VARS[$CONFIG['cookie_name'] . '_data'])) {
    $cookie_warning = <<<EOT
                  <tr>
                          <td colspan="2" align="center" class="tableh2">
                        <font size="1" color="red"><b>Warning your browser does not accept script's cookies<b></font>
                        </td>
                  </tr>

EOT;
}
if you should get a parse error it's probably because you modified something else - the heredoc syntax allows having single quotes in this way.

If you really think you have discovered a bug, please post a link to the page where we can see it and a complete listing of your login.php

GauGau

pcfreak

Hey, this is realy stupid from me :?  

My php editor gives an error at  's  

why ? its expects a var between 2 single quotes , because one quote is missing its gives a error.


Sorry about this, i wil go programming the next time in a text editor  :wink:

laixi