bug 196 fixed : release creator shell script transforms every occurence of
%PWGVERSION% into the release number being created. This occurence should not been transformed, so we use a little trick :-) git-svn-id: http://piwigo.org/svn/branches/branch-1_5@991 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
9bc452537e
commit
bf56ef443b
1 changed files with 3 additions and 1 deletions
|
@ -76,7 +76,9 @@ if (isset($_GET['action']) and 'check_upgrade' == $_GET['action'])
|
|||
l10n('Check for upgrade failed for unknown reasons.')
|
||||
);
|
||||
}
|
||||
else if ('%PWGVERSION%' == $versions{'current'})
|
||||
// concatenation needed to avoid automatic transformation by release
|
||||
// script generator
|
||||
else if ('%'.'PWGVERSION'.'%' == $versions{'current'})
|
||||
{
|
||||
array_push(
|
||||
$page['infos'],
|
||||
|
|
Loading…
Add table
Reference in a new issue