Skip to content

Commit

Permalink
fixed the capitalization to make sure class loading works properly
Browse files Browse the repository at this point in the history
  • Loading branch information
caseysoftware committed Oct 6, 2014
1 parent aa3046b commit 653c787
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion classes/w2p/FileSystem/Local.class.php
Expand Up @@ -6,7 +6,7 @@
*
* @package web2project\filesystem
*/
class w2p_FileSystem_Local implements w2p_Interfaces_Filesystem
class w2p_FileSystem_Local implements w2p_Interfaces_FileSystem
{
public function isWritable()
{
Expand Down
2 changes: 1 addition & 1 deletion classes/w2p/Interfaces/FileSystem.class.php
Expand Up @@ -6,7 +6,7 @@
*
* @package web2project\filesystem
*/
interface w2p_Interfaces_Filesystem
interface w2p_Interfaces_FileSystem
{
public function isWritable();
public function move(CFile $file, $old_project_id, $actual_file_name);
Expand Down
2 changes: 1 addition & 1 deletion includes/version.php
Expand Up @@ -2,5 +2,5 @@
// Set the version components separately.
$w2p_version_major = 3;
$w2p_version_minor = 2;
$w2p_version_patch = 87; // Can be set to null if not used
$w2p_version_patch = 90; // Can be set to null if not used
$w2p_version_prepatch = null; // Set to null if a release version.

0 comments on commit 653c787

Please sign in to comment.