diff options
author | h6w <tudor@tudorholton.com> | 2018-11-20 09:53:04 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-20 09:53:04 +1100 |
commit | e80f4f2359ee21fc45b8f752feb9b3889ba955fe (patch) | |
tree | acd9f30771883b0b1f03a3fd9c10af00b188732c | |
parent | 3076333c9ad7a67860e6cc8084e08e1b56abe459 (diff) | |
parent | fc4a77e1dc3d85dddf4c3cea71938245dfdab769 (diff) | |
download | phpvirtualbox-e80f4f2359ee21fc45b8f752feb9b3889ba955fe.zip phpvirtualbox-e80f4f2359ee21fc45b8f752feb9b3889ba955fe.tar.gz phpvirtualbox-e80f4f2359ee21fc45b8f752feb9b3889ba955fe.tar.bz2 |
Merge pull request #138 from tom077/PR-1
Fix sourceforge URL
-rw-r--r-- | index.html | 6 | ||||
-rw-r--r-- | js/chooser.js | 4 | ||||
-rw-r--r-- | panes/about.html | 15 |
3 files changed, 13 insertions, 12 deletions
@@ -96,6 +96,8 @@ * If not, there is a PHP error somewhere. */ if(typeof trans != "function" || typeof __vboxLangData == "undefined") { + //if(true) { + trans = function(s){return s;}; vboxAlert("An unknown PHP error occurred. This is most likely a syntax error in\ config.php in phpVirtualBox's folder. The most common errors are an unclosed\ @@ -106,8 +108,8 @@ browser may display the PHP error message.</p>\ <p>If find that this is not the case,\ or have no idea what this error message means, please raise the issue\ - at <a href='http://sourceforge.net/p/phpvirtualbox/discussion/help/'\ - >http://sourceforge.net/p/phpvirtualbox/discussion/help/",{'width':'50%'}); + at <a target=_blank href='https://github.com/phpvirtualbox/phpvirtualbox/issues/'\ + >https://github.com/phpvirtualbox/phpvirtualbox/issues",{'width':'50%'}); return; } diff --git a/js/chooser.js b/js/chooser.js index 1bfa27b..494cc40 100644 --- a/js/chooser.js +++ b/js/chooser.js @@ -720,7 +720,7 @@ var vboxChooser = { var vStr = $('#vboxPane').data('vboxConfig').phpvboxver.substring(0,$('#vboxPane').data('vboxConfig').phpvboxver.indexOf('-')); var vers = $('#vboxPane').data('vboxConfig').version.string.replace('_OSE','').split('.'); if(vers[0]+'.'+vers[1] != vStr) { - vboxAlert('This version of phpVirtualBox ('+$('#vboxPane').data('vboxConfig').phpvboxver+') is incompatible with VirtualBox ' + $('#vboxPane').data('vboxConfig').version.string + ". You probably need to <a href='http://sourceforge.net/projects/phpvirtualbox/files/' target=_blank>download the latest phpVirtualBox " + vers[0]+'.'+vers[1] + "-x</a>.<p>See the Versioning section below the file list in the link for more information</p>",{'width':'auto'}); + vboxAlert('This version of phpVirtualBox ('+$('#vboxPane').data('vboxConfig').phpvboxver+') is incompatible with VirtualBox ' + $('#vboxPane').data('vboxConfig').version.string + ". You probably need to <a href='https://github.com/phpvirtualbox/phpvirtualbox/' target=_blank>download the latest phpVirtualBox " + vers[0]+'.'+vers[1] + "-x</a>.<p>See the Versioning section below the file list in the link for more information</p>",{'width':'auto'}); } } } else { @@ -2448,4 +2448,4 @@ $(document).ready(function(){ -});
\ No newline at end of file +}); diff --git a/panes/about.html b/panes/about.html index fb035ab..fec5f1f 100644 --- a/panes/about.html +++ b/panes/about.html @@ -1,14 +1,13 @@ <!-- $Id: about.html 595 2015-04-17 09:50:36Z imoore76 $ --> <div style='text-align: center'> <h3 align='center' id='vboxAboutHeader'>phpVirtualBox X -/- VirtualBox X compatible</h3> -<p style='text-align: center'>Copyright (C) 2010-2015 Ian Moore (imoore76 at yahoo dot com) - <a href='LICENSE.txt' target='_new'>LICENSE</a></p> -<p style='text-align: center'><a target='_blank' href='http://sourceforge.net/projects/phpvirtualbox/'>http://sourceforge.net/projects/phpvirtualbox/</a></p> -<p style='text-align: left'> -I develop and support phpVirtualBox in my spare time - free of charge. I do not receive payments from VirtualBox (Oracle) nor am -I affiliated with them in any way. If you find this program useful, I ask that you please donate. +<p style='text-align: center'><a target='_blank' href='https://github.com/phpvirtualbox/phpvirtualbox/'>https://github.com/phpvirtualbox/phpvirtualbox</a></p> +<p style='text-align: center'> +phpVirtualBox is from 2017 maintained by Smart Guide Pty Ltd (tudor at smartguide dot com dot au) +with support from various <a target='_blank' href='https://github.com/phpvirtualbox/phpvirtualbox/graphs/contributors/'>contributors</a> </p> -<p align=center> -<a href='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=UB2BVHBDUJ2D2' target=_blank><img src='images/donate.gif' style='border: 0px;'></a> +<p style='text-align: center'> +Originally Copyright (C) 2015 Ian Moore (imoore76 at yahoo dot com) - <a href='LICENSE.txt' target='_new'>LICENSE</a> </p> <div style='margin-top: 10px; border-top: 1px solid #000;' id='vboxAboutVbox'><p>VirtualBox</p> <script type='text/javascript'> @@ -16,4 +15,4 @@ I affiliated with them in any way. If you find this program useful, I ask that y $('#vboxAboutVbox').html('Virtual Box '+$('#vboxPane').data('vboxConfig').version.string+' ('+$('#vboxPane').data('vboxConfig').version.revision+')<br />' + $('#vboxPane').data('vboxConfig').version.settingsFilePath); </script> </div> -</div>
\ No newline at end of file +</div> |