Changeset 1488 in subversion
- Timestamp:
- Jun 7, 2008 9:34:41 AM (5 years ago)
- Location:
- trunk/roundcubemail
- Files:
-
- 2 edited
-
UPGRADING (modified) (2 diffs)
-
program/include/rcube_template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/roundcubemail/UPGRADING
r1374 r1488 2 2 =================== 3 3 4 Follow these instructions if upgrading from a previous version 4 First you should remove all subfolders from /program/localization/ 5 because most language codes have changed in 0.2-alpha. This way you 6 can make sure that no old localization files remain on your disk. 7 8 Then follow these instructions if upgrading from a previous version 5 9 of RoundCube Webmail. 6 10 … … 11 15 * replace all files in folder /program/ 12 16 * replace all files in folder /skins/default/ 17 * run all commands in SQL/[yourdbtype].update.sql 18 below the line "-- Updates from version 0.1.1" 13 19 * check the config/main.inc.php.dist for new configuration 14 20 options and add them to your config -
trunk/roundcubemail/program/include/rcube_template.php
r1433 r1488 535 535 } 536 536 if ($object=='version') { 537 return (string)RCMAIL_VERSION; 537 $ver = (string)RCMAIL_VERSION; 538 if (is_file(INSTALL_PATH . '.svn/entries')) { 539 if (preg_match('/Revision:\s(\d+)/', @shell_exec('svn info'), $regs)) 540 $ver .= ' [SVN r'.$regs[1].']'; 541 } 542 return $ver; 538 543 } 539 544 if ($object=='pagetitle') {
Note: See TracChangeset
for help on using the changeset viewer.
