Skip to content

Commit 406b0ae

Browse files
author
Michael Toppa
committed
first step in making directory names lowercase
1 parent 7ffa009 commit 406b0ae

25 files changed

+7
-7
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

start.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111

1212
$shashinPath = dirname(__FILE__);
1313
$shashinParentDir = basename($shashinPath);
14-
$shashinAutoLoaderPath = $shashinPath . '/libx/ShashinAutoLoader.php';
14+
$shashinAutoLoaderPath = $shashinPath . '/libxy/ShashinAutoLoader.php';
1515

1616
add_action('wpmu_new_blog', 'shashinActivateForNewNetworkSite');
1717
register_activation_hook(__FILE__, 'shashinActivate');
1818
register_deactivation_hook(__FILE__, 'shashinDeactivateForNetworkSites');
19-
load_plugin_textdomain('shashin', false, $shashinParentDir . '/languagesx/');
19+
load_plugin_textdomain('shashin', false, $shashinParentDir . '/languagesxy/');
2020

2121
if (file_exists($shashinAutoLoaderPath)) {
2222
require_once($shashinAutoLoaderPath);
@@ -44,7 +44,7 @@ function shashinActivate() {
4444
return null;
4545
}
4646

47-
require_once dirname(__FILE__) . '/libx/ShashinAutoLoader.php';
47+
require_once dirname(__FILE__) . '/libxy/ShashinAutoLoader.php';
4848
new ShashinAutoLoader('/shashin');
4949
$shashin = new ShashinWp();
5050
$status = $shashin->install();

testsx/IntegrationShashinWp.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public function __construct() {
77
}
88

99
public function setUp() {
10-
$autoLoaderPath = dirname(__FILE__) . '/../libx/ShashinAutoLoader.php';
10+
$autoLoaderPath = dirname(__FILE__) . '/../libxy/ShashinAutoLoader.php';
1111
require_once($autoLoaderPath);
1212
new ShashinAutoLoader('/shashin');
1313
$this->shashin = new ShashinWp();

testsx/ShashinUnitTestsSuite.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// this is needed for simpletest's addFile method
44
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__));
55

6-
$shashinTestsAutoLoaderPath = dirname(__FILE__) . '/../libx/ShashinAutoLoader.php';
6+
$shashinTestsAutoLoaderPath = dirname(__FILE__) . '/../libxy/ShashinAutoLoader.php';
77

88
if (file_exists($shashinTestsAutoLoaderPath)) {
99
require_once($shashinTestsAutoLoaderPath);
@@ -13,7 +13,7 @@
1313
class ShashinUnitTestsSuite extends TestSuite {
1414
function __construct() {
1515
parent::__construct();
16-
$this->addFile('libx/UnitShashinPhoto.php');
16+
$this->addFile('libxy/UnitShashinPhoto.php');
1717
}
1818
}
1919

uninstall.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
$shashinPath = dirname(__FILE__);
88
$shashinParentDir = basename($shashinPath);
9-
$shashinAutoLoaderPath = $shashinPath . '/libx/ShashinAutoLoader.php';
9+
$shashinAutoLoaderPath = $shashinPath . '/libxy/ShashinAutoLoader.php';
1010

1111
require_once($shashinAutoLoaderPath);
1212
new ShashinAutoLoader('/shashin');

0 commit comments

Comments
 (0)