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

Commit

Permalink
App Engine fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamie Snape committed Nov 11, 2014
1 parent 95bab29 commit 5253afa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ skip_files:
- ^(.*/)?(\.git|\.idea|\.vagrant|data|log|provisioning|tests|tmp|utils)/.*
- ^(.*/)?(core|modules/.*)/(database/pgsql|sqlite|tests)/.*
- ^(.*/)?library/CMake/.*
- ^(.*/)?modules/(batchmake|dicom.*|example|metadataextractor|pvw|remoteprocessing|solr|thumbnailcreator|visualize)/.*
- ^(.*/)?modules/(batchmake|dicom.*|example|javauploaddownload|metadataextractor|pvw|remoteprocessing|solr|visualize)/.*
2 changes: 1 addition & 1 deletion core/GlobalController.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function preDispatch()
}
parent::preDispatch();
if (!$this->isDebug()) {
$frontendOptions = array('automatic_serialization' => true, 'lifetime' => 86400);
$frontendOptions = array('automatic_serialization' => true, 'lifetime' => 86400, 'cache_id_prefix' => 'midas_');
if (extension_loaded('memcached') || session_save_path() === 'Memcache'
) {
$cache = Zend_Cache::factory('Core', 'Libmemcached', $frontendOptions, array());
Expand Down
2 changes: 1 addition & 1 deletion modules/thumbnailcreator/forms/Admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function init()
$submit->setLabel('Save');

if ($isAppEngine) {
array($provider, $format, $submit);
$this->addElements(array($provider, $format, $submit));
} else {
$this->addElements(array($provider, $format, $imageMagick, $useThumbnailer, $thumbnailer, $submit));
}
Expand Down

0 comments on commit 5253afa

Please sign in to comment.