Table of BP releases with DB version has errors
-
Just looking at this table, I notice that versions 2.7.3 and 2.7.4 show a “DB Version” of 11272. But in fact downloading those versions reveals that they use DN version 11105, just like 2.7.0 does. This seems a little troubling, given how easy it is to extract the actual BP version and DB version out of the source tree:
$ find . -name 'bp-loader.php' | xargs egrep 'this->(db_)?version +=' ./2.1.1/buddypress/bp-loader.php: $this->version = '2.1.1'; ./2.1.1/buddypress/bp-loader.php: $this->db_version = 8311; ./2.2.0/buddypress/bp-loader.php: $this->version = '2.2'; ./2.2.0/buddypress/bp-loader.php: $this->db_version = 9181; ./2.2.1/buddypress/bp-loader.php: $this->version = '2.2.1'; ./2.2.1/buddypress/bp-loader.php: $this->db_version = 9181; ./2.2.3.1/buddypress/bp-loader.php: $this->version = '2.2.3.1'; ./2.2.3.1/buddypress/bp-loader.php: $this->db_version = 9181; ./2.4.0/buddypress/bp-loader.php: $this->version = '2.4.0'; ./2.4.0/buddypress/bp-loader.php: $this->db_version = 10071; ./2.4.3/buddypress/bp-loader.php: $this->version = '2.4.3'; ./2.4.3/buddypress/bp-loader.php: $this->db_version = 10071; ./2.7.0/tags/2.7.0/src/bp-loader.php: $this->version = '2.7.0'; ./2.7.0/tags/2.7.0/src/bp-loader.php: $this->db_version = 11105; ./2.7.3/buddypress/bp-loader.php: $this->version = '2.7.3'; ./2.7.3/buddypress/bp-loader.php: $this->db_version = 11105; ./2.7.4/buddypress/bp-loader.php: $this->version = '2.7.4'; ./2.7.4/buddypress/bp-loader.php: $this->db_version = 11105;
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.