CiviCRM Community Forums (archive)

*

News:

Have a question about CiviCRM?
Get it answered quickly at the new
CiviCRM Stack Exchange Q+A site

This forum was archived on 25 November 2017. Learn more.
How to get involved.
What to do if you think you've found a bug.



  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Discussion (deprecated) »
  • Alpha and Beta Release Testing »
  • 4.1 Release Testing (Moderator: Kurund Jalmi) »
  • Event Dashbord: event titles missing
Pages: [1]

Author Topic: Event Dashbord: event titles missing  (Read 1226 times)

msn

  • I post frequently
  • ***
  • Posts: 152
  • Karma: 6
  • Please talk to the other site
Event Dashbord: event titles missing
January 11, 2012, 10:01:03 am
The event titles are missing, they are present. The content is in the wrong column.

I cannot reproduce it on the sandbox.
In the database the field 'civicrm_event' looks ok.

Kurund Jalmi

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 4169
  • Karma: 128
    • CiviCRM
  • CiviCRM version: 4.x, future
  • CMS version: Drupal 7, Joomla 3.x
  • MySQL version: 5.5.x
  • PHP version: 5.4.x
Re: Event Dashbord: event titles missing
January 13, 2012, 12:01:28 am
This is a bug, hence filed: http://issues.civicrm.org/jira/browse/CRM-9478

Thanks
Kurund
Found this reply helpful? Support CiviCRM

msn

  • I post frequently
  • ***
  • Posts: 152
  • Karma: 6
  • Please talk to the other site
Re: Event Dashbord: event titles missing
January 13, 2012, 12:59:15 am
Tha language used in the image is Dutch (nl-NL).

Kurund Jalmi

  • Administrator
  • I’m (like) Lobo ;)
  • *****
  • Posts: 4169
  • Karma: 128
    • CiviCRM
  • CiviCRM version: 4.x, future
  • CMS version: Drupal 7, Joomla 3.x
  • MySQL version: 5.5.x
  • PHP version: 5.4.x
Re: Event Dashbord: event titles missing
January 13, 2012, 01:50:41 am
Below patch should fix the issue:

Code: [Select]
Index: templates/CRM/Event/Page/DashBoard.tpl
===================================================================
--- templates/CRM/Event/Page/DashBoard.tpl      (revision 38337)
+++ templates/CRM/Event/Page/DashBoard.tpl      (working copy)
@@ -57,7 +57,7 @@
     <tbody>
     {foreach from=$eventSummary.events item=values key=id}
     <tr class="crm-event_{$id}">
-        <td class="crm-event-eventTitle"><a href="{crmURL p="civicrm/event/info" q="reset=1&id=`$id`"}" title="{ts}View event info page"{/ts}>{$values.eventTitle}</a></td>
+        <td class="crm-event-eventTitle"><a href="{crmURL p="civicrm/event/info" q="reset=1&id=`$id`"}" title="{ts}View event info page{/ts}">{$values.eventTitle}</a></td>
         <td class="crm-event-id">{$id}</td>
         <td class="crm-event-eventType">{$values.eventType}</td>
         <td class="crm-event-isPublic">{$values.isPublic}</td>


Kurund
Found this reply helpful? Support CiviCRM

msn

  • I post frequently
  • ***
  • Posts: 152
  • Karma: 6
  • Please talk to the other site
Re: Event Dashbord: event titles missing
January 13, 2012, 02:20:48 am
YES, that looks better.

Pages: [1]
  • CiviCRM Community Forums (archive) »
  • Old sections (read-only, deprecated) »
  • Discussion (deprecated) »
  • Alpha and Beta Release Testing »
  • 4.1 Release Testing (Moderator: Kurund Jalmi) »
  • Event Dashbord: event titles missing

This forum was archived on 2017-11-26.