Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 5253afa

Browse files
author
Jamie Snape
committed
App Engine fixes
1 parent 95bab29 commit 5253afa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ skip_files:
5252
- ^(.*/)?(\.git|\.idea|\.vagrant|data|log|provisioning|tests|tmp|utils)/.*
5353
- ^(.*/)?(core|modules/.*)/(database/pgsql|sqlite|tests)/.*
5454
- ^(.*/)?library/CMake/.*
55-
- ^(.*/)?modules/(batchmake|dicom.*|example|metadataextractor|pvw|remoteprocessing|solr|thumbnailcreator|visualize)/.*
55+
- ^(.*/)?modules/(batchmake|dicom.*|example|javauploaddownload|metadataextractor|pvw|remoteprocessing|solr|visualize)/.*

core/GlobalController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public function preDispatch()
140140
}
141141
parent::preDispatch();
142142
if (!$this->isDebug()) {
143-
$frontendOptions = array('automatic_serialization' => true, 'lifetime' => 86400);
143+
$frontendOptions = array('automatic_serialization' => true, 'lifetime' => 86400, 'cache_id_prefix' => 'midas_');
144144
if (extension_loaded('memcached') || session_save_path() === 'Memcache'
145145
) {
146146
$cache = Zend_Cache::factory('Core', 'Libmemcached', $frontendOptions, array());

modules/thumbnailcreator/forms/Admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function init()
7474
$submit->setLabel('Save');
7575

7676
if ($isAppEngine) {
77-
array($provider, $format, $submit);
77+
$this->addElements(array($provider, $format, $submit));
7878
} else {
7979
$this->addElements(array($provider, $format, $imageMagick, $useThumbnailer, $thumbnailer, $submit));
8080
}

0 commit comments

Comments
 (0)