mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-12 18:36:29 +00:00
Empty commit
This commit is contained in:
parent
29de6bd44c
commit
26d5bcf758
@ -6,12 +6,12 @@
|
||||
/*------------------------------------------------------*/
|
||||
/********************************************************/
|
||||
|
||||
// Lets prevent people from clearing feeds
|
||||
// Let's prevent people from clearing feeds
|
||||
if (isset($_GET['clearcache'])) {
|
||||
unset($_GET['clearcache']);
|
||||
}
|
||||
|
||||
require 'classes/config.php'; // The config contains all site wide configuration information as well as memcached rules
|
||||
require 'classes/config.php'; // The config contains all site-wide configuration information as well as memcached rules
|
||||
|
||||
require(SERVER_ROOT.'/classes/misc.class.php'); // Require the misc class
|
||||
require(SERVER_ROOT.'/classes/cache.class.php'); // Require the caching class
|
||||
@ -27,7 +27,7 @@ function is_number($Str) {
|
||||
if ($Str < 0) {
|
||||
return false;
|
||||
}
|
||||
// We're converting input to a int, then string and comparing to original
|
||||
// We're converting input to an int, then string, and comparing to the original
|
||||
return ($Str == strval(intval($Str)) ? true : false);
|
||||
}
|
||||
|
||||
|
@ -888,7 +888,7 @@ ul.poll li.graph {
|
||||
height: 28px;
|
||||
background: url('https://what.cd/static/styles/postmod/images/show.png') no-repeat center center;
|
||||
-moz-opacity: 0.5;
|
||||
opacity:.50;
|
||||
opacity: 0.50;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
|
||||
@ -897,7 +897,7 @@ ul.poll li.graph {
|
||||
height: 28px;
|
||||
background: url('https://what.cd/static/styles/postmod/images/hide.png') no-repeat center center;
|
||||
-moz-opacity: 0.5;
|
||||
opacity:.50;
|
||||
opacity: 0.50;
|
||||
filter: alpha(opacity=50);
|
||||
}
|
||||
|
||||
@ -1114,7 +1114,7 @@ ul .invitetree {
|
||||
background: #111 50% 0 no-repeat fixed;
|
||||
z-index: 1001;
|
||||
-moz-opacity: 0.9;
|
||||
opacity:.90;
|
||||
opacity: 0.90;
|
||||
filter: alpha(opacity=90);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user