Brak opisu

version.php 766B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * WordPress Version
  4. *
  5. * Contains version information for the current WordPress release.
  6. *
  7. * @package WordPress
  8. * @since 1.2.0
  9. */
  10. /**
  11. * The WordPress version string.
  12. *
  13. * @global string $wp_version
  14. */
  15. $wp_version = '5.8.2';
  16. /**
  17. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
  18. *
  19. * @global int $wp_db_version
  20. */
  21. $wp_db_version = 49752;
  22. /**
  23. * Holds the TinyMCE version.
  24. *
  25. * @global string $tinymce_version
  26. */
  27. $tinymce_version = '49110-20201110';
  28. /**
  29. * Holds the required PHP version.
  30. *
  31. * @global string $required_php_version
  32. */
  33. $required_php_version = '5.6.20';
  34. /**
  35. * Holds the required MySQL version.
  36. *
  37. * @global string $required_mysql_version
  38. */
  39. $required_mysql_version = '5.0';