Changeset 11833 for extensions
- Timestamp:
- Jul 25, 2011, 9:37:22 PM (13 years ago)
- Location:
- extensions/stripped
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/stripped/admin/maintain.inc.php
r11059 r11833 29 29 ); 30 30 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 = " 32 INSERT INTO " . CONFIG_TABLE . " (param,value,comment) 33 VALUES ('stripped' , '".pwg_db_real_escape_string(serialize($config))."' , 'stripped theme parameters');"; 34 34 35 35 pwg_query($query); … … 41 41 global $prefixeTable; 42 42 43 $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="stripped" LIMIT 1;';43 $query = "DELETE FROM " . CONFIG_TABLE . " WHERE param='stripped' LIMIT 1;"; 44 44 pwg_query($query); 45 45 } -
extensions/stripped/admin/upgrade.inc.php
r11059 r11833 29 29 ); 30 30 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 = " 32 INSERT INTO " . CONFIG_TABLE . " (param,value,comment) 33 VALUES ('stripped' , '".pwg_db_real_escape_string(serialize($config))."' , 'stripped theme parameters');"; 34 34 35 35 pwg_query($query); -
extensions/stripped/readme.txt
r11778 r11833 27 27 Changelog 28 28 --------- 29 30 *** version 1.4.2 31 32 - minor layout adjustments 33 - sqlite compatibility 29 34 30 35 *** version 1.4.1 -
extensions/stripped/template/footer.tpl
r10085 r11833 36 36 {/if} 37 37 38 </div> 39 38 40 {get_combined_scripts load='footer'} 39 41 … … 43 45 {/foreach} 44 46 {/if} 45 46 </div> 47 47 48 48 <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 58 49 {* Please, do not remove this copyright. If you really want to, 59 50 contact us on http://piwigo.org to find a solution on how … … 65 56 <span class="Piwigo">Piwigo</span></a> 66 57 {$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 67 68 68 69 </div> -
extensions/stripped/theme.css
r11702 r11833 121 121 margin-left: auto; 122 122 margin-right: auto; 123 width:100%; 123 124 } 124 125 … … 149 150 #calendar_block { 150 151 padding: 0 20px; 152 max-width:800px; 153 margin:auto; 151 154 } 152 155 … … 171 174 172 175 .titrePage { 173 height:2 1px;176 height:22px; 174 177 font-size:115.385%; 175 178 margin: 0.5em 0 0 0; … … 1541 1544 } 1542 1545 1546 /* ContactForm Plugin -------------------------------------------------------------------------- */ 1547 1548 #cf_message { font-size: 100%;} 1549 1543 1550 /* Gmaps Plugin -------------------------------------------------------------------------------- */ 1544 1551
Note: See TracChangeset
for help on using the changeset viewer.