Some file level phpdoc from darkdragon. fixes #5572

git-svn-id: https://develop.svn.wordpress.org/trunk@6554 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren
2008-01-04 20:05:07 +00:00
parent a50cd52330
commit 6ef4a86b66
6 changed files with 64 additions and 9 deletions

View File

@@ -1,8 +1,21 @@
<?php
/**
* This holds the version number in a separate file so we can bump it without cluttering the SVN
*/
// This holds the version number in a separate file so we can bump it without cluttering the SVN
/**
* The WordPress version string
*
* @global string $wp_version
*/
$wp_version = '2.4-bleeding';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB scheme
* changes.
*
* @global int $wp_db_version
*/
$wp_db_version = 6124;
?>
?>