/[drupal]/drupal/modules/update/update.report.inc
ViewVC logotype

Diff of /drupal/modules/update/update.report.inc

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

revision 1.10.2.5 by goba, Tue Oct 6 12:10:43 2009 UTC revision 1.10.2.6 by goba, Fri Nov 6 07:26:21 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: update.report.inc,v 1.10.2.4 2009/06/09 11:08:32 goba Exp $  // $Id: update.report.inc,v 1.10.2.5 2009/10/06 12:10:43 goba Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 183  function theme_update_report($data) { Line 183  function theme_update_report($data) {
183      $row .= t('Includes: %includes', array('%includes' => implode(', ', $project['includes'])));      $row .= t('Includes: %includes', array('%includes' => implode(', ', $project['includes'])));
184      $row .= "</div>\n";      $row .= "</div>\n";
185    
186        if (!empty($project['base_themes'])) {
187          $row .= '<div class="basethemes">';
188          sort($project['base_themes']);
189          // We use !dependencies and manually call theme('placeholder') here to
190          // avoid breakding the D6 string freeze. This identical string is
191          // already in modules/system/system.admin.inc.
192          $row .= t('Depends on: !dependencies', array('!dependencies' => theme('placeholder', implode(', ', $project['base_themes']))));
193          $row .= "</div>\n";
194        }
195    
196        if (!empty($project['sub_themes'])) {
197          $row .= '<div class="subthemes">';
198          sort($project['sub_themes']);
199          // We use !required and manually call theme('placeholder') here to avoid
200          // breakding the D6 string freeze. This identical string is already in
201          // modules/system/system.admin.inc.
202          $row .= t('Required by: !required', array('!required' => theme('placeholder', implode(', ', $project['sub_themes']))));
203          $row .= "</div>\n";
204        }
205    
206      $row .= "</div>\n"; // info div.      $row .= "</div>\n"; // info div.
207    
208      if (!isset($rows[$project['project_type']])) {      if (!isset($rows[$project['project_type']])) {

Legend:
Removed from v.1.10.2.5  
changed lines
  Added in v.1.10.2.6

  ViewVC Help
Powered by ViewVC 1.1.3