Changeset 11833


Ignore:
Timestamp:
Jul 25, 2011, 9:37:22 PM (13 years ago)
Author:
Zaphod
Message:

version 1.4.2

Location:
extensions/stripped
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • extensions/stripped/admin/maintain.inc.php

    r11059 r11833  
    2929      );
    3030     
    31     $query = '
    32 INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment)
    33 VALUES ("stripped" , "'.pwg_db_real_escape_string(serialize($config)).'" , "stripped theme parameters");';
     31    $query = "
     32INSERT INTO " . CONFIG_TABLE . " (param,value,comment)
     33VALUES ('stripped' , '".pwg_db_real_escape_string(serialize($config))."' , 'stripped theme parameters');";
    3434
    3535    pwg_query($query);
     
    4141  global $prefixeTable;
    4242
    43   $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="stripped" LIMIT 1;';
     43  $query = "DELETE FROM " . CONFIG_TABLE . " WHERE param='stripped' LIMIT 1;";
    4444  pwg_query($query);
    4545}
  • extensions/stripped/admin/upgrade.inc.php

    r11059 r11833  
    2929      );
    3030     
    31     $query = '
    32 INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment)
    33 VALUES ("stripped" , "'.pwg_db_real_escape_string(serialize($config)).'" , "stripped theme parameters");';
     31    $query = "
     32INSERT INTO " . CONFIG_TABLE . " (param,value,comment)
     33VALUES ('stripped' , '".pwg_db_real_escape_string(serialize($config))."' , 'stripped theme parameters');";
    3434
    3535    pwg_query($query);
  • extensions/stripped/readme.txt

    r11778 r11833  
    2727Changelog
    2828---------
     29
     30*** version 1.4.2
     31
     32- minor layout adjustments
     33- sqlite compatibility
    2934
    3035*** version 1.4.1
  • extensions/stripped/template/footer.tpl

    r10085 r11833  
    3636                {/if}
    3737
     38        </div>
     39
    3840        {get_combined_scripts load='footer'}
    3941
     
    4345        {/foreach}
    4446        {/if}
    45                
    46         </div>
    47 
     47       
    4848        <div id="copyright">
    49           {if isset($CONTACT_MAIL)}
    50           {'Contact'|@translate}
    51           <a href="mailto:{$CONTACT_MAIL}?subject={'A comment on your site'|@translate|@escape:url}">{'Webmaster'|@translate} - </a>
    52           {/if}
    53 
    54           {if isset($debug.TIME) }
    55          {'Page generated in'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'SQL queries in'|@translate} {$debug.SQL_TIME}) -
    56          {/if}
    57 
    5849         {* Please, do not remove this copyright. If you really want to,
    5950                  contact us on http://piwigo.org to find a solution on how
     
    6556          <span class="Piwigo">Piwigo</span></a>
    6657          {$VERSION}
     58
     59          {if isset($CONTACT_MAIL)}
     60          {'Contact'|@translate}
     61          <a href="mailto:{$CONTACT_MAIL}?subject={'A comment on your site'|@translate|@escape:url}">- {'Webmaster'|@translate} </a>
     62          {/if}
     63
     64          {if isset($debug.TIME) }
     65         - {'Page generated in'|@translate} {$debug.TIME} ({$debug.NB_QUERIES} {'SQL queries in'|@translate} {$debug.SQL_TIME})
     66         {/if}
     67
    6768
    6869        </div>
  • extensions/stripped/theme.css

    r11702 r11833  
    121121        margin-left: auto;
    122122        margin-right: auto;
     123        width:100%;
    123124}
    124125
     
    149150#calendar_block {
    150151        padding: 0 20px;
     152        max-width:800px;
     153        margin:auto;
    151154}
    152155
     
    171174
    172175.titrePage {
    173         height:21px;
     176        height:22px;
    174177        font-size:115.385%;
    175178        margin: 0.5em 0 0 0;
     
    15411544}
    15421545
     1546/* ContactForm Plugin -------------------------------------------------------------------------- */
     1547
     1548#cf_message { font-size: 100%;}
     1549
    15431550/* Gmaps Plugin -------------------------------------------------------------------------------- */
    15441551
Note: See TracChangeset for help on using the changeset viewer.