Skip to content
Snippets Groups Projects
Commit d0485215 authored by Demian Katz's avatar Demian Katz
Browse files

Merge branch 'release-4.1'

parents 4cf8e87a f0069cae
Branches
Tags
No related merge requests found
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
<property name="solr_version" value="6.4.2" /> <property name="solr_version" value="6.4.2" />
<property name="phpdoc_version" value="2.9.0" /> <property name="phpdoc_version" value="2.9.0" />
<property name="version" value="4.1" /> <property name="version" value="4.1.1" />
<!-- We only need the -p switch if the password is non-blank --> <!-- We only need the -p switch if the password is non-blank -->
<if><not><equals arg1="${mysqlrootpass}" arg2="" /></not><then> <if><not><equals arg1="${mysqlrootpass}" arg2="" /></not><then>
......
...@@ -133,7 +133,7 @@ showBulkOptions = false ...@@ -133,7 +133,7 @@ showBulkOptions = false
; Should users be allowed to save searches in their accounts? ; Should users be allowed to save searches in their accounts?
allowSavedSearches = true allowSavedSearches = true
; Generator value to display in an HTML header <meta> tag: ; Generator value to display in an HTML header <meta> tag:
generator = "VuFind 4.1" generator = "VuFind 4.1.1"
; This section allows you to configure the mechanism used for storing user ; This section allows you to configure the mechanism used for storing user
; sessions. Available types: File, Memcache, Database. ; sessions. Available types: File, Memcache, Database.
......
{ {
"name": "vufind", "name": "vufind",
"version": "4.1.0", "version": "4.1.1",
"description": "Dev tools to handle css preprocessing, js magic, and compression", "description": "Dev tools to handle css preprocessing, js magic, and compression",
"repository": { "repository": {
"type": "git", "type": "git",
......
vufind 4.1.1 distribution; urgency=low
* VuFind 4.1.1 release (see http://vufind.org/wiki/changelog for details)
-- maintainer VuFind Project Administration Team <vufind-admins@lists.sourceforge.net> Mo 20 Nov 2017 08:48:29 UTC
vufind 4.1 distribution; urgency=low vufind 4.1 distribution; urgency=low
* VuFind 4.1 release (see http://vufind.org/wiki/changelog for details) * VuFind 4.1 release (see http://vufind.org/wiki/changelog for details)
......
Package: vufind Package: vufind
Version: 4.1 Version: 4.1.1
Section: World Wide Web Section: World Wide Web
Priority: Optional Priority: Optional
Architecture: all Architecture: all
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
<? endif; ?> <? endif; ?>
<? $insideButton = false; ?> <? $insideButton = false; ?>
<? $channelLinkData = []; ?>
<? foreach ($channels as $channel): ?> <? foreach ($channels as $channel): ?>
<? <?
$groupId = isset($channel['groupId']) $groupId = isset($channel['groupId'])
...@@ -36,13 +35,9 @@ ...@@ -36,13 +35,9 @@
<? $insideButton = false; ?> <? $insideButton = false; ?>
<? endif; ?> <? endif; ?>
<div class="channel-title"> <div class="channel-title">
<h2><?=$this->escapeHtml($channel['title'])?> <h2><?=$this->escapeHtml($channel['title'])?></h2>
<? if (!empty($channel['links'])): ?>
<? $channelLinkData[$channelID] = json_encode($channel['links']); ?>
<? endif; ?>
</h2>
</div> </div>
<div id="<?=$channelID ?>" class="channel" data-group="<?=$groupId ?>" data-link-json='<?=json_encode($channel['links']) ?>'> <div id="<?=$channelID ?>" class="channel" data-group="<?=$groupId ?>" data-link-json='<?=empty($channel['links']) ? '[]' : json_encode($channel['links']) ?>'>
<!-- Wrapper for slides --> <!-- Wrapper for slides -->
<? foreach ($channel['contents'] as $item): ?> <? foreach ($channel['contents'] as $item): ?>
<a href="<?=$this->recordLink()->getUrl("{$item['source']}|{$item['id']}")?>" class="channel-record slide" data-record-id="<?=$this->escapeHtmlAttr($item['id']) ?>" data-record-source="<?=$item['source'] ?>"> <a href="<?=$this->recordLink()->getUrl("{$item['source']}|{$item['id']}")?>" class="channel-record slide" data-record-id="<?=$this->escapeHtmlAttr($item['id']) ?>" data-record-source="<?=$item['source'] ?>">
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment