Rename BUILD_NUMBER to .build_number so it's not so loud.

This commit is contained in:
Bharat Mediratta
2011-01-17 17:33:10 -08:00
parent 29be21bb0d
commit 76411d7d6d
3 changed files with 3 additions and 3 deletions

2
.gitattributes vendored
View File

@@ -1,2 +1,2 @@
BUILD_NUMBER merge=merge-keep-ours
.build_number merge=merge-keep-ours

View File

@@ -202,10 +202,10 @@ class gallery_Core {
}
/**
* Return the contents of the BUILD_NUMBER file, which should be a single integer.
* Return the contents of the .build_number file, which should be a single integer.
*/
static function build_number() {
$result = parse_ini_file(DOCROOT . "BUILD_NUMBER");
$result = parse_ini_file(DOCROOT . ".build_number");
return $result["build_number"];
}
}