diff options
author | plegall <plg@piwigo.org> | 2006-06-13 20:16:31 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2006-06-13 20:16:31 +0000 |
commit | d2f1e0a64f7479469cbdb7496b07ca3e6ab82ecd (patch) | |
tree | 995b26b20d257042ce490b080b3d8c7c6050cc9a /install/upgrade_1.5.0.php | |
parent | 0535c346daf1bfc277de4c47bfb6d4d84545c421 (diff) |
bug 401 fixed: CSS identifier "theHeader" should not be part of the
parameter value.
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1345 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/upgrade_1.5.0.php')
-rw-r--r-- | install/upgrade_1.5.0.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/upgrade_1.5.0.php b/install/upgrade_1.5.0.php index 036472449..5ab450dad 100644 --- a/install/upgrade_1.5.0.php +++ b/install/upgrade_1.5.0.php @@ -394,7 +394,7 @@ SELECT value ;'; list($d) = array_from_query($query, 'value'); -$page_banner='<div id="theHeader"><h1>'.$t.'</h1><p>'.$d.'</p></div>'; +$page_banner='<h1>'.$t.'</h1><p>'.$d.'</p>'; $page_banner=addslashes($page_banner); $query = ' INSERT INTO '.PREFIX_TABLE.'config |