Changeset 1345


Ignore:
Timestamp:
Jun 13, 2006, 10:16:31 PM (18 years ago)
Author:
plg
Message:

bug 401 fixed: CSS identifier "theHeader" should not be part of the
parameter value.

Location:
branches/branch-1_6
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_6/install/config.sql

    r1105 r1345  
    1919INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('rate','true','Rating pictures feature is enabled');
    2020INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('rate_anonymous','true','Rating pictures feature is also enabled for visitors');
    21 INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('page_banner','<div id=\"theHeader\"><h1>PhpWebGallery demonstration site</h1><p>My photos web site</p></div>','html displayed on the top each page of your gallery');
     21INSERT INTO phpwebgallery_config (param,value,comment) VALUES ('page_banner','<h1>PhpWebGallery demonstration site</h1><p>My photos web site</p>','html displayed on the top each page of your gallery');
    2222
    2323-- Notification by mail
  • branches/branch-1_6/install/upgrade_1.5.0.php

    r1311 r1345  
    395395list($d) = array_from_query($query, 'value');
    396396
    397 $page_banner='<div id="theHeader"><h1>'.$t.'</h1><p>'.$d.'</p></div>';
     397$page_banner='<h1>'.$t.'</h1><p>'.$d.'</p>';
    398398$page_banner=addslashes($page_banner);
    399399$query = '
  • branches/branch-1_6/template/yoga/header.tpl

    r1304 r1345  
    3131<div id="the_page">
    3232
    33 {PAGE_BANNER}
     33<div id="theHeader">{PAGE_BANNER}</div>
Note: See TracChangeset for help on using the changeset viewer.