Skip to content

Commit

Permalink
Removed svn version tracking text in admin footer controller.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesallsup committed Aug 5, 2014
1 parent cdae2ed commit 9b7b283
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 2 additions & 4 deletions upgrade.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,8 @@ v153
- New "Category Product Count" setting in the Admin->System->Settings under the Server tab. This is disabled by default and should only be used for small stores as it causes massive performance loss for larger stores with lots of categories.

11. Load the store front and again press CTRL+F5 3x times to refresh your browser cache. That will prevent oddly shifted elements due to stylesheet.

12. If you upgraded from a patch version to a full version, you may have an old system/config/svn.ver file. It won't hurt anything but it may show like "v1.5.3.r990" in the footer. So best to delete that file if upgrading to a full release version. Future versions of OpenCart should have an updated version of that file and you won't need to delete it, but for now (as of 1.5.3) you will need to delete it.

13. If you use vQmod (by now everyone should be) you should first check for a new version at http://vQmod.com. Be sure to download the version that is marked for "opencart".

12. If you use vQmod (by now everyone should be) you should first check for a new version at http://vQmod.com. Be sure to download the version that is marked for "opencart".
You will also need to re-run the vQmod installer, even if you have the latest version. You should already have the installer on your site as it isn't meant to be deleted from the first time you run it. Simply browse to:
http://yoursite.com/vqmod/install and you should see a success message. If you do not see a success message, follow the full install guide from the http://vQmod.com site.

Expand Down
4 changes: 0 additions & 4 deletions upload/admin/controller/common/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ public function index() {

$data['text_footer'] = sprintf($this->language->get('text_footer'), VERSION);

if (file_exists(DIR_SYSTEM . 'config/svn/svn.ver')) {
$data['text_footer'] .= '.r' . trim(file_get_contents(DIR_SYSTEM . 'config/svn/svn.ver'));
}

return $this->load->view('common/footer.tpl', $data);
}
}

0 comments on commit 9b7b283

Please sign in to comment.