Plugin Directory

Changeset 2278559


Ignore:
Timestamp:
04/07/2020 03:23:28 PM (6 years ago)
Author:
kerkenit
Message:

Minor change

Location:
promissa/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • promissa/trunk/promissa.php

    r2212820 r2278559  
    44    Plugin URI: https://www.promissa.nl/plugins/wordpress
    55    Description: This plugin will give you shortcodes and widgets with the latest masses and events of Pro Missa.
    6     Version: 1.2.7
     6    Version: 1.2.8
    77    Author: Kerk en IT
    88    Author URI: https://www.kerkenit.nl
  • promissa/trunk/readme.txt

    r2212821 r2278559  
    88Tags: kerk, vieringen, mistijden, kerkgebouwen, ledenadministratie, roosters
    99Requires at least: 5.2.1
    10 Tested up to: 5.3.1
    11 Stable tag: 1.2.7
     10Tested up to: 5.4
     11Stable tag: 1.2.8
    1212Requires PHP: 5.2.4
    1313Requires at least: 4.6
     
    8181== Changelog ==
    8282
     83= 1.2.8 =
     84
     85* Minor change
     86
    8387= 1.2.7 =
    8488
  • promissa/trunk/shortcodes/calendar.php

    r2207376 r2278559  
    6363            );
    6464
     65
    6566            foreach($masses as $mass)
    6667            {
     
    7273                $ProMissaEvents[] = array(
    7374                        'id' => $mass['ID'],
    74                         'title' =>  (!empty($mass['note']) ? $mass['note'] : $mass['massType']) . ' (' . (strlen($mass['short']) > 2 ?  substr($mass['short'], 0, 2) : $mass['short']) . ')',
     75                        'title' =>  (!empty($mass['note']) ? $mass['note'] : $mass['massType']) . (!$single_church ? ' (' . (strlen($mass['short']) > 2 ?  substr($mass['short'], 0, 2) : $mass['short']) . ')' : ''),
    7576                        //'tooltip' =>  "<span><strong>" . (!empty($mass['note']) ? $mass['massType'] : (!empty($mass['memo']) ? Trim($mass['memo']) : Trim($mass['massType']))) . "</strong></span><br />Locatie: <strong>" . $mass['church'] . "</strong><br />Datum: <strong>" . $dateFormatter->format($date) . "</strong><br />Aanvang: <strong>" .$date->format('H.i\\u') . "</strong>",
    7677                        'tooltip' =>  "<table><tr><th colspan=\"2\">" . (!empty($mass['note']) ? $mass['note'] : (!empty($mass['memo']) ? Trim($mass['memo']) : Trim($mass['massType']))) . "</th></tr><tr><td>" . __('Location', 'promissa') . ": </td><td>" . $mass['church'] . "</td></tr><tr><td>" . __('Date', 'promissa') . ": </td><td>" . $dateFormatter->format($date) . "</td></tr><tr><td>" . __('Time', 'promissa') . ": </td><td>" .$date->format('H.i\\u') . "</td></tr>" .
Note: See TracChangeset for help on using the changeset viewer.