Ignore:
Timestamp:
Nov 13, 2011, 1:18:26 PM (12 years ago)
Author:
mistic100
Message:

fix display with simple and stripped themes, disable with luciano theme

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Comments_on_Albums/include/coa_albums.php

    r12601 r12618  
    350350    );
    351351 
    352   $template->set_filename('comments_on_albums', dirname(__FILE__) .'/../template/albums.tpl');
     352  global $user;
     353  if ( $is_simple = strstr($user['theme'], 'simple') !== false or strstr($user['theme'], 'stripped') !== false )
     354  {
     355    $template->assign('IS_SIMPLE', $is_simple);
     356    $template->set_filename('comments_on_albums', dirname(__FILE__) .'/../template/albums_simple.tpl');
     357  }
     358  else
     359  {
     360    $template->set_filename('comments_on_albums', dirname(__FILE__) .'/../template/albums.tpl');
     361  }
    353362  $template->concat('PLUGIN_INDEX_CONTENT_END', $template->parse('comments_on_albums', true));
    354363 
Note: See TracChangeset for help on using the changeset viewer.