diff options
author | friendica <info@friendica.com> | 2013-02-18 16:04:01 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-02-18 16:04:01 -0800 |
commit | 5914ebbfe8687abd91be28490d3abb50add96400 (patch) | |
tree | c54df9f5f7bf9d068ff2e85245f392dbfbae3425 /boot.php | |
parent | cf2bcfdd52d5b17ddb2dc264f3543fc4dfa3034f (diff) | |
download | volse-hubzilla-5914ebbfe8687abd91be28490d3abb50add96400.tar.gz volse-hubzilla-5914ebbfe8687abd91be28490d3abb50add96400.tar.bz2 volse-hubzilla-5914ebbfe8687abd91be28490d3abb50add96400.zip |
reverse the cyclic conundrum, and a minor db update of no consequence
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -16,7 +16,7 @@ require_once('include/features.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica Red'); define ( 'FRIENDICA_VERSION', trim(file_get_contents('version.inc')) . 'R'); define ( 'ZOT_REVISION', 1 ); -define ( 'DB_UPDATE_VERSION', 1030 ); +define ( 'DB_UPDATE_VERSION', 1031 ); define ( 'EOL', '<br />' . "\r\n" ); define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' ); @@ -415,6 +415,7 @@ define ( 'ITEM_MENTIONSME', 0x0400); function startup() { error_reporting(E_ERROR | E_WARNING | E_PARSE); + // Some hosting providers block/disable this @set_time_limit(0); // This has to be quite large to deal with embedded private photos |