Ignore:
Timestamp:
May 20, 2010, 10:21:29 PM (14 years ago)
Author:
EXFTB
Message:

2.1.b fix minor bug

Location:
extensions/LLGBO2/admin
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • extensions/LLGBO2/admin/llgbo_admin.php

    r6241 r6259  
    3434include(LLGBO_PATH.'defaultvalues.php');
    3535
    36 
     36/* ****************************************************** */
     37/* Plugin template initialisation for admin panel display */
     38/* ****************************************************** */
     39global $template , $conf,$lang;
     40{$template->assign( 'LLGBO_VERSION' , LLGBO_INFO_VERSION);}
     41$me = get_plugin_data($plugin_id);
     42$template->assign('LLGBOINFO','');
     43// 
     44$query =" SELECT ID FROM  piwigo_themes where id like '%gally%' " ;
     45$result = pwg_query($query);
     46 while ($row = pwg_db_fetch_assoc($result))
     47 {      $template->assign( 'GALLY', 'Msg');     }
     48//
    3749// +-----------------------------------------------------------------------+
    3850// |                            Tabssheet
     
    5062$disptabframe = 'false';
    5163$disptabheader = 'false';       
    52                            
     64$tabsheet->select($page['tab']);
    5365if (!isset($_POST['llgbo_frame'])   )
    5466        {$disptabframe = $conf['LLGBO_SETTINGS'][0] ;} 
     
    97109{$template->set_filenames( array('llgbo_admin_content' => dirname(__FILE__).'/llgbo_adminheader.tpl') );}
    98110$tabsheet->select($page['tab']);
    99 /* ****************************************************** */
    100 /* Plugin template initialisation for admin panel display */
    101 /* ****************************************************** */
    102 global $template , $conf,$lang;
    103 {$template->assign( 'LLGBO_VERSION' , LLGBO_INFO_VERSION);}
    104 $me = get_plugin_data($plugin_id);
    105 $template->assign('LLGBOINFO','');
    106 // Load configuration settings from database
    107 
    108111
    109112$template->append('head_elements',
  • extensions/LLGBO2/admin/llgbo_adminframe.tpl

    r6234 r6259  
    11
    22{if !empty($LLGBOINFO)}<div class="infos" style="text-align:left;padding-left:50px;" >{$LLGBOINFO|@translate}</div>{/if}
    3  <h2> {'Title'|@translate} <br> {$LLGBO_VERSION}</h2>
     3 <h2> {'Title'|@translate} -> {$LLGBO_VERSION}</h2>
    44 <h3>{'Step3_Title'|@translate}</h3>
    55<form method="post" action="" class="properties">
  • extensions/LLGBO2/admin/llgbo_adminheader.tpl

    r6234 r6259  
    11{if !empty($LLGBOINFO)}<div class="infos" style="text-align:left;padding-left:50px;" >{$LLGBOINFO|@translate}</div>{/if}
    2 <h2> {'Title'|@translate} <br> {$LLGBO_VERSION}</h2>
     2<h2> {'Title'|@translate} -> {$LLGBO_VERSION}</h2>
    33<h3>{'Step4_Title'|@translate}</h3>
    44<form method="post" action="{$llgbo_F_ACTION}" class="properties">
  • extensions/LLGBO2/admin/llgbo_adminsettings.tpl

    r6241 r6259  
    11
    22{if !empty($LLGBOINFO)}<div class="infos" style="text-align:left;padding-left:50px;" >{$LLGBOINFO|@translate}</div>{/if}
    3  <h2> {'Title'|@translate} <br> {$LLGBO_VERSION}</h2>
     3 <h2> {'Title'|@translate} -> {$LLGBO_VERSION}</h2>
    44<h3>{'Howto'|@translate}</h3>
    5 {if !empty($GALLY)}
    6 <span>{'llgo_warning_setting'|@translate} </span>{/if}
    75<form method="post" action="" class="properties">
    86<fieldset>
    9 
    107<table id="llgbotable">
    118        <tr>
     
    4542                <td class="llgboinput">{html_radios name='llgbo_header' values='true,false'|@explode output='Yes,No'|@explode|translate selected=$LLGBO_HEADER}</td>   
    4643        </tr>   
    47         <tr>
     44        <tr><td class="llgbolabel"><HR WIDTH=80% ALIGN=LEFT></td> <td></td>
    4845        </tr>
    4946        <tr>
     
    5451
    5552<div align="center"><br><br><input class="submit" type="submit" value="{'Reset_To_Default'|@translate}" name="reset"/> <input class="submit" type="submit" value="{'submit'|@translate}" name="submit" /></div>
     53<br>
     54{if !empty($GALLY)}
     55<span>{'llgo_warning_setting'|@translate} </span>{/if}
    5656</fieldset>
    5757</form>
Note: See TracChangeset for help on using the changeset viewer.