Commit c1b478f97cbfea4344afbf2bf25f7726a3d201c6
1 parent
32522d76
KTS-2488
"Improve database incompatibility error message" Fixed. Error message changed. Committed By:Yusuf Davids Reviewed By:Jalaloedien Abrahams git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7681 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/session/Session.inc
| ... | ... | @@ -196,7 +196,7 @@ class Session { |
| 196 | 196 | |
| 197 | 197 | if ($default->systemVersion != $version) { |
| 198 | 198 | if (KTLOG_CACHE) $default->log->info("Session::verify : Database not upgraded"); |
| 199 | - return PEAR::raiseError(sprintf(_kt('Incompatible database version (%s, expected version %s) - contact the administrator'), $version, $default->systemVersion)); | |
| 199 | + return PEAR::raiseError(sprintf(_kt('Database incompatibility error: <br> Please ensure that you have completed the database upgrade procedure. <br> Please <a href=%s>click here</a> to complete.'),'setup/upgrade.php' )); | |
| 200 | 200 | } |
| 201 | 201 | |
| 202 | 202 | if (empty($sessionID)) { | ... | ... |