From 945d3cc048564d80e29144b9ab640fd7ecd410b5 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 3 Jun 2017 19:46:19 +0000 Subject: [PATCH] The constant CURLE_OPERATION_TIMEDOUT isn't defined on older PHP versions --- boot.php | 9 ++++++++- database.sql | 3 ++- include/dbstructure.php | 1 + update.php | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/boot.php b/boot.php index 0f93c5e6d8..f9f8794e50 100644 --- a/boot.php +++ b/boot.php @@ -40,7 +40,7 @@ define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_CODENAME', 'Asparagus'); define ( 'FRIENDICA_VERSION', '3.5.2-rc' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); -define ( 'DB_UPDATE_VERSION', 1226 ); +define ( 'DB_UPDATE_VERSION', 1227 ); /** * @brief Constant with a HTML line break. @@ -457,6 +457,13 @@ if (!defined("SIGTERM")) { define("SIGTERM", 15); } +/** + * Depending on the PHP version this constant does exist - or not. + * See here: http://php.net/manual/en/curl.constants.php#117928 + */ +if (!defined('CURLE_OPERATION_TIMEDOUT')) { + define('CURLE_OPERATION_TIMEDOUT', CURLE_OPERATION_TIMEOUTED); +} /** * * Reverse the effect of magic_quotes_gpc if it is enabled. diff --git a/database.sql b/database.sql index 2b40552eb7..4a5946ef38 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ -- Friendica 3.5.2-rc (Asparagus) --- DB_UPDATE_VERSION 1226 +-- DB_UPDATE_VERSION 1227 -- ------------------------------------------ @@ -1115,6 +1115,7 @@ CREATE TABLE IF NOT EXISTS `workerqueue` ( `pid` int(11) NOT NULL DEFAULT 0, `executed` datetime NOT NULL DEFAULT '0001-01-01 00:00:00', PRIMARY KEY(`id`), + INDEX `pid` (`pid`), INDEX `priority_created` (`priority`,`created`) ) DEFAULT COLLATE utf8mb4_general_ci; diff --git a/include/dbstructure.php b/include/dbstructure.php index 441e7be7f7..1daf042d53 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -1742,6 +1742,7 @@ function db_definition() { ), "indexes" => array( "PRIMARY" => array("id"), + "pid" => array("pid"), "priority_created" => array("priority", "created"), ) ); diff --git a/update.php b/update.php index 695ed39919..7561a9af19 100644 --- a/update.php +++ b/update.php @@ -1,6 +1,6 @@