Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update urls to HTTPS #907

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 56 additions & 56 deletions Core/Core.php
100755 → 100644

Large diffs are not rendered by default.

132 changes: 66 additions & 66 deletions Core/Core_c.php

Large diffs are not rendered by default.

54 changes: 27 additions & 27 deletions Core/Core_d.php
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Fatal run-time errors. These indicate errors that can not be
* recovered from, such as a memory allocation problem.
* Execution of the script is halted.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_ERROR', 1);

Expand All @@ -17,106 +17,106 @@
* is not caught by a user defined handle (see also
* <b>set_error_handler</b>), the application aborts as it
* was an <b>E_ERROR</b>.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_RECOVERABLE_ERROR', 4096);

/**
* Run-time warnings (non-fatal errors). Execution of the script is not
* halted.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_WARNING', 2);

/**
* Compile-time parse errors. Parse errors should only be generated by
* the parser.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_PARSE', 4);

/**
* Run-time notices. Indicate that the script encountered something that
* could indicate an error, but could also happen in the normal course of
* running a script.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_NOTICE', 8);

/**
* Enable to have PHP suggest changes
* to your code which will ensure the best interoperability
* and forward compatibility of your code.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_STRICT', 2048);

/**
* Run-time notices. Enable this to receive warnings about code
* that will not work in future versions.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_DEPRECATED', 8192);

/**
* Fatal errors that occur during PHP's initial startup. This is like an
* <b>E_ERROR</b>, except it is generated by the core of PHP.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_CORE_ERROR', 16);

/**
* Warnings (non-fatal errors) that occur during PHP's initial startup.
* This is like an <b>E_WARNING</b>, except it is generated
* by the core of PHP.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_CORE_WARNING', 32);

/**
* Fatal compile-time errors. This is like an <b>E_ERROR</b>,
* except it is generated by the Zend Scripting Engine.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_COMPILE_ERROR', 64);

/**
* Compile-time warnings (non-fatal errors). This is like an
* <b>E_WARNING</b>, except it is generated by the Zend
* Scripting Engine.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_COMPILE_WARNING', 128);

/**
* User-generated error message. This is like an
* <b>E_ERROR</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_ERROR', 256);

/**
* User-generated warning message. This is like an
* <b>E_WARNING</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_WARNING', 512);

/**
* User-generated notice message. This is like an
* <b>E_NOTICE</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_NOTICE', 1024);

/**
* User-generated warning message. This is like an
* <b>E_DEPRECATED</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_DEPRECATED', 16384);

Expand All @@ -125,7 +125,7 @@
* <b>E_STRICT</b> prior to PHP 5.4.0.
* Value of <b>E_ALL</b> is 32767 since PHP 5.4.x,
* 30719 in PHP 5.3.x, 6143 in PHP 5.2.x, 2047 previously
* @link https://php.net/manual/en/errorfunc.constants.php
* @link https://www.php.net/manual/en/errorfunc.constants.php
*/
define ('E_ALL', 32767);
define ('DEBUG_BACKTRACE_PROVIDE_OBJECT', 1);
Expand Down Expand Up @@ -191,7 +191,7 @@
define ('PHP_EXTENSION_DIR', "/usr/lib/php5/20090626");
/**
* Specifies where the binaries were installed into.
* @link https://php.net/manual/en/reserved.constants.php
* @link https://www.php.net/manual/en/reserved.constants.php
*/
define ('PHP_BINARY', '/usr/local/php/bin/php');
define ('PHP_PREFIX', "/usr");
Expand Down Expand Up @@ -249,23 +249,23 @@

define('PHP_FD_SETSIZE', 1024);

/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_WRITE', 0);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_FLUSH', 4);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_CLEAN', 2);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_FINAL', 8);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_CLEANABLE', 16);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_FLUSHABLE', 32);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_REMOVABLE', 64);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_STDFLAGS', 112);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_STARTED', 4096);
/** @link https://php.net/manual/en/outcontrol.constants.php */
/** @link https://www.php.net/manual/en/outcontrol.constants.php */
define('PHP_OUTPUT_HANDLER_DISABLED', 8192);
Loading