/[drupal]/contributions/modules/panels/panels.module
ViewVC logotype

Diff of /contributions/modules/panels/panels.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.28.2.43, Tue Oct 13 21:47:58 2009 UTC revision 1.28.2.44, Wed Oct 21 20:22:31 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: panels.module,v 1.28.2.42 2009/10/13 21:38:52 merlinofchaos Exp $  // $Id: panels.module,v 1.28.2.43 2009/10/13 21:47:58 merlinofchaos Exp $
3    
4  /**  /**
5   * @file panels.module   * @file panels.module
# Line 1017  function template_preprocess_panels_pane Line 1017  function template_preprocess_panels_pane
1017        $vars['id'] = ' id="' . $content->css_id . '"';        $vars['id'] = ' id="' . $content->css_id . '"';
1018      }      }
1019      if (!empty($content->css_class)) {      if (!empty($content->css_class)) {
1020        $vars['classes'] = ' ' . $content->css_class;        $vars['classes'] .= ' ' . $content->css_class;
1021      }      }
1022    }    }
1023    
# Line 1030  function template_preprocess_panels_pane Line 1030  function template_preprocess_panels_pane
1030    $vars['title'] = !empty($content->title) ? $content->title : '';    $vars['title'] = !empty($content->title) ? $content->title : '';
1031    
1032    $vars['feeds'] = !empty($content->feeds) ? implode(' ', $content->feeds) : '';    $vars['feeds'] = !empty($content->feeds) ? implode(' ', $content->feeds) : '';
1033    $vars['content'] = $content->content;    $vars['content'] = !empty($content->content) ? $content->content : '';
1034    
1035    $vars['links'] = !empty($content->links) ? implode(' ', $content->links) : '';    $vars['links'] = !empty($content->links) ? implode(' ', $content->links) : '';
1036    $vars['more'] = '';    $vars['more'] = '';

Legend:
Removed from v.1.28.2.43  
changed lines
  Added in v.1.28.2.44

  ViewVC Help
Powered by ViewVC 1.1.2