Skip to content
Snippets Groups Projects
Verified Commit e43c26dc authored by quietone's avatar quietone
Browse files

Issue #3478132 by pere orga, smustgrave, cilefen: Fix case in comment (OPcache)

parent 16c1f490
Branches
Tags
19 merge requests!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!8736Update the Documention As per the Function uses.,!5423Draft: Resolve #3329907 "Test2",!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3478Issue #3337882: Deleted menus are not removed from content type config,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2062Issue #3246454: Add weekly granularity to views date sort,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #300484 passed with warnings
Pipeline: drupal

#300495

    Pipeline: drupal

    #300490

      Pipeline: drupal

      #300485

        ......@@ -37,7 +37,7 @@
        // Initialize the autoloader.
        $class_loader = require_once $root_path . '/autoload.php';
        // If OPCache is in use, ensure opcache.save_comments is enabled.
        // If OPcache is in use, ensure opcache.save_comments is enabled.
        if (OpCodeCache::isEnabled() && !ini_get('opcache.save_comments')) {
        print 'Systems with OPcache installed must have <a href="http://php.net/manual/opcache.configuration.php#ini.opcache.save-comments">opcache.save_comments</a> enabled.';
        exit();
        ......
        ......@@ -13,7 +13,7 @@ class OpCodeCache {
        * Checks if OpCodeCache is enabled.
        *
        * @return bool
        * TRUE if opcache is enabled, FALSE otherwise.
        * TRUE if OPcache is enabled, FALSE otherwise.
        */
        public static function isEnabled() {
        return extension_loaded('Zend OPcache') && ini_get('opcache.enable');
        ......
        ......@@ -1026,7 +1026,7 @@ public static function bootEnvironment($app_root = NULL) {
        ini_set('log_errors', 1);
        ini_set('error_log', $app_root . '/' . $test_db->getTestSitePath() . '/error.log');
        // Ensure that a rewritten settings.php is used if opcache is on.
        // Ensure that a rewritten settings.php is used if OPcache is on.
        ini_set('opcache.validate_timestamps', 'on');
        ini_set('opcache.revalidate_freq', 0);
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment