Skip to content

Commit

Permalink
Adding one PHP close tag that has been missing (but working) since ye…
Browse files Browse the repository at this point in the history
…ars!
  • Loading branch information
stronk7 committed Aug 23, 2006
1 parent 5cae120 commit 454adcc
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions backup/version.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
<?PHP //$Id$
// This file defines the current version of the
// backup/restore code that is being used. This can be
// compared against the values stored in the
// database (backup_version) to determine whether upgrades should
// be performed (see db/backup_*.php)
<?php //$Id$

$backup_version = 2006072000; // The current version is a date (YYYYMMDDXX)
/// This file defines the current version of the
/// backup/restore code that is being used. This can be
/// compared against the values stored in the
/// database (backup_version) to determine whether upgrades should
/// be performed (see db/backup_*.php)

$backup_release = "1.7dev"; // User-friendly version number
$backup_version = 2006082301; // The current version is a date (YYYYMMDDXX)
$backup_release = "1.7dev"; // User-friendly version number

?>

0 comments on commit 454adcc

Please sign in to comment.