- Timestamp:
- 03/05/10 11:15:56 (6 months ago)
- Location:
- img/trunk
- Files:
-
- 3 modified
-
css/style.css (modified) (1 diff)
-
lib/functions.php (modified) (2 diffs)
-
lib/init.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
img/trunk/css/style.css
r69 r75 9 9 } 10 10 11 #bug { 12 font-size: small; 13 float: left; 14 } 15 11 16 #copy { 12 17 font-size: small; 13 text-align: right;18 float: right; 14 19 } 15 20 -
img/trunk/lib/functions.php
r67 r75 232 232 $year .= '-' . date("Y"); 233 233 } 234 return '<p id="copy">© ' . $year . ' by <a href="http://blog.pew.cc">Daniel Triendl</a></p>';234 return '<p id="copy">©' . $year . ' by <a href="http://pew.cc">Daniel Triendl</a></p>'; 235 235 } 236 236 … … 285 285 <?php echo $content ?> 286 286 </div> 287 <p id="bug"><a href="http://dev.pew.cc/newticket">Report a bug</a></p> 287 288 <?php echo copyright(2009); ?> 288 289 <?php -
img/trunk/lib/init.php
r71 r75 39 39 if (!isLogin()) { 40 40 if (isset($_COOKIE['openid_cookie'])) { 41 if (get_magic_quotes_gpc()) $_COOKIE['openid_cookie'] = stripslashes($_COOKIE['openid_cookie']); 41 42 list($identity, $cookie) = @unserialize($_COOKIE['openid_cookie']); 42 43 $res = $db->query("SELECT count(*) as count FROM users WHERE user = '" . $db->escape($identity) . "' and cookie = '" . $cookie . "';");
