1
0

copy baseURL to defaultBaseURL on upgrade

This commit is contained in:
onli
2013-05-14 00:52:18 +02:00
parent a12c4f306d
commit bc0519a453
2 changed files with 17 additions and 0 deletions

View File

@ -168,6 +168,11 @@ $tasks = array(array('version' => '0.5.1',
All internal and spartacus templates have been updated, so make sure you are using a recent version of your blog\'s template.
If you have your own custom template, be sure within your {foreach from=$dategroup.entries item="entry"} loop has this line after it:
<strong>{assign var="entry" value=$entry scope="parent"}</strong>'),
array('version' => '1.7',
'function' => 'serendipity_copyBaseURL',
'title' => 'Copy baseURL',
'desc' => 'The baseURL option was moved to the defaultBaseURL-Option in the backend-configuration. To reflect that change in the database and to prevent future bugs, baseURL should copied to defaultBaseURL if that options is not set already.'),

View File

@ -153,3 +153,15 @@ function serendipity_addDefaultGroups() {
serendipity_addDefaultGroup(USERLEVEL_CHIEF_DESC, USERLEVEL_CHIEF);
serendipity_addDefaultGroup(USERLEVEL_ADMIN_DESC, USERLEVEL_ADMIN);
}
/**
* baseURL is now defaultBaseURL in the database, so copy if not already set
*
* */
function serendipity_copyBaseURL() {
global $serendipity;
if (serendipity_get_config_var("defaultBaseURL") === false && serendipity_get_config_var("baseURL") !== false ) {
serendipity_set_config_var("defaultBaseURL", serendipity_get_config_var("baseURL"));
}
}