diff options
| author | lsces <lester@lsces.co.uk> | 2026-04-06 15:21:57 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-04-06 15:21:57 +0100 |
| commit | a804d843c8608bcf2dbaa903db01c8b747978526 (patch) | |
| tree | a8ad615f1c408708900eb12114179c128e47edc3 /includes | |
| parent | 937041cf1178a05ab6627e35d458efe0b397b3e7 (diff) | |
| download | kernel-a804d843c8608bcf2dbaa903db01c8b747978526.tar.gz kernel-a804d843c8608bcf2dbaa903db01c8b747978526.tar.bz2 kernel-a804d843c8608bcf2dbaa903db01c8b747978526.zip | |
Tidying links to bitweaver.org to avoid redirect from http
Diffstat (limited to 'includes')
| -rwxr-xr-x | includes/classes/BitSystem.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/includes/classes/BitSystem.php b/includes/classes/BitSystem.php index db04cc7..d5b4b62 100755 --- a/includes/classes/BitSystem.php +++ b/includes/classes/BitSystem.php @@ -1845,7 +1845,7 @@ class BitSystem extends BitSingleton { } else { print "<p>Proceed to the installer <strong>at <a href=\"".BIT_ROOT_URL."install/install.php\">".BIT_ROOT_URL."install/install.php</a></strong> after you have corrected the identified problems."; } - print "<br />Consult the bitweaver <a href='http://www.bitweaver.org/wiki/index.php?page=Technical_Documentation'>Technical Documentation</a> if you need more help.</p></body></html>"; + print "<br />Consult the bitweaver <a href='https://www.bitweaver.org/wiki/index.php?page=Technical_Documentation'>Technical Documentation</a> if you need more help.</p></body></html>"; } exit; @@ -2164,7 +2164,7 @@ class BitSystem extends BitSingleton { foreach( $pReqHash as $req => $version ) { //$this->mPackages[$req]['is_requirement'] = true; - $this->mPackages[$pPackage]['info']['requirements'] .= '<a class="external" href="http://www.bitweaver.org/wiki/'.ucfirst( $req ).'Package">'.ucfirst( $req ).'</a>'; + $this->mPackages[$pPackage]['info']['requirements'] .= '<a class="external" href="https://www.bitweaver.org/wiki/'.ucfirst( $req ).'Package">'.ucfirst( $req ).'</a>'; $max = !empty( $version['max'] ) ? " - ".$version['max'] : ''; if( $version['min'] != '0.0.0' ) { $this->mPackages[$pPackage]['info']['requirements'] .= " (".$version['min'].$max.")"; @@ -2376,10 +2376,10 @@ class BitSystem extends BitSingleton { break; } - $fromattributes['URL'] = "http://www.bitweaver.org/wiki/".ucfirst( $node['package'] )."Package"; + $fromattributes['URL'] = "https://www.bitweaver.org/wiki/".ucfirst( $node['package'] )."Package"; $graph->addNode( $fromNode, $fromattributes ); - $toattributes['URL'] = "http://www.bitweaver.org/wiki/".ucfirst( $node['requires'] )."Package"; + $toattributes['URL'] = "https://www.bitweaver.org/wiki/".ucfirst( $node['requires'] )."Package"; $graph->addNode( $toNode, $toattributes ); $graph->addEdge( @@ -2629,12 +2629,12 @@ class BitSystem extends BitSingleton { $error['number'] = 0; $error['string'] = $data = ''; -// http://www.bitweaver.org/bitversion.txt is no longer available +// https://www.bitweaver.org/bitversion.txt is no longer available // cache the bitversion.txt file locally and update only once a day // if you don't have a connection to bitweaver.org, you can set a cronjob to 'touch' this file once a day to avoid waiting for a timeout. /* if( !is_file( TEMP_PKG_PATH.'bitversion.txt' ) || ( time() - filemtime( TEMP_PKG_PATH.'bitversion.txt' )) > 86400 ) { if( $h = fopen( TEMP_PKG_PATH.'bitversion.txt', 'w' )) { - $data = KernelTools::bit_http_request( 'http://www.bitweaver.org/bitversion.txt' ); + $data = KernelTools::bit_http_request( 'https://www.bitweaver.org/bitversion.txt' ); if( !preg_match( "/not found/i", $data )) { fwrite( $h, $data ); fclose( $h ); |
