never enough comments
This commit is contained in:
parent
cbfb40c43f
commit
ee6806d82b
2 changed files with 15 additions and 1 deletions
|
@ -1,5 +1,18 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Arbitrary configuration storage
|
||||||
|
* Note:
|
||||||
|
* Please do not store booleans - convert to 0/1 integer values
|
||||||
|
* The get_?config() functions return boolean false for keys that are unset,
|
||||||
|
* and this could lead to subtle bugs.
|
||||||
|
*
|
||||||
|
* There are a few places in the code (such as the admin panel) where boolean
|
||||||
|
* configurations need to be fixed as of 10/08/2011.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
// retrieve a "family" of config variables from database to cached storage
|
// retrieve a "family" of config variables from database to cached storage
|
||||||
|
|
||||||
if(! function_exists('load_config')) {
|
if(! function_exists('load_config')) {
|
||||||
|
|
|
@ -440,7 +440,8 @@ function poller_run($argv, $argc){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
elseif($contact['network'] === NETWORK_FACEBOOK) {
|
elseif($contact['network'] === NETWORK_FACEBOOK) {
|
||||||
// TODO: work in progress
|
// This is picked up by the Facebook plugin on a cron hook.
|
||||||
|
// Ignored here.
|
||||||
}
|
}
|
||||||
|
|
||||||
if($xml) {
|
if($xml) {
|
||||||
|
|
Loading…
Reference in a new issue