Remove v before version number display

This commit is contained in:
mattpass
2020-11-22 16:24:13 +00:00
parent d4c4911ead
commit 116c82736f
7 changed files with 9 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ $t = $text['get-branch'];
<!DOCTYPE html>
<html>
<head>
<title>ICEcoder v<?php echo $ICEcoder["versionNo"];?> get branch</title>
<title>ICEcoder <?php echo $ICEcoder["versionNo"];?> get branch</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="robots" content="noindex, nofollow">
</head>

View File

@@ -82,7 +82,7 @@ function copyOldVersion() {
function openZipNew($icvInfo) {
echo 'Retrieving zip from ICEcoder site...<br>';
$source = 'ICEcoder v'.$icvInfo;
$source = 'ICEcoder '.$icvInfo;
$target = '../';
$remoteFile = 'https://icecoder.net/ICEcoder-v'.(str_replace(" beta", "-beta",$icvInfo)).'.zip';