Changeset 75 for img

Show
Ignore:
Timestamp:
03/05/10 11:15:56 (6 months ago)
Author:
daniel
Message:

- Added: Bug report link to trac ticket create page

Location:
img/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • img/trunk/css/style.css

    r69 r75  
    99} 
    1010 
     11#bug { 
     12        font-size: small; 
     13        float: left; 
     14} 
     15 
    1116#copy { 
    1217        font-size: small; 
    13         text-align: right; 
     18        float: right; 
    1419} 
    1520 
  • img/trunk/lib/functions.php

    r67 r75  
    232232                $year .= '-' . date("Y"); 
    233233        } 
    234         return '<p id="copy">&copy; ' . $year . ' by <a href="http://blog.pew.cc">Daniel Triendl</a></p>'; 
     234        return '<p id="copy">&copy;' . $year . ' by <a href="http://pew.cc">Daniel Triendl</a></p>'; 
    235235} 
    236236 
     
    285285                        <?php echo $content ?> 
    286286                </div> 
     287                <p id="bug"><a href="http://dev.pew.cc/newticket">Report a bug</a></p> 
    287288                <?php echo copyright(2009); ?> 
    288289<?php 
  • img/trunk/lib/init.php

    r71 r75  
    3939if (!isLogin()) { 
    4040        if (isset($_COOKIE['openid_cookie'])) { 
     41                if (get_magic_quotes_gpc()) $_COOKIE['openid_cookie'] = stripslashes($_COOKIE['openid_cookie']); 
    4142                list($identity, $cookie) = @unserialize($_COOKIE['openid_cookie']); 
    4243                $res = $db->query("SELECT count(*) as count FROM users WHERE user = '" . $db->escape($identity) . "' and cookie = '" . $cookie . "';");