Skip to content
This repository has been archived by the owner on Jan 10, 2020. It is now read-only.

Commit

Permalink
General path cleanup for release per OSWG recommendations
Browse files Browse the repository at this point in the history
  • Loading branch information
webdevUser committed Jun 29, 2009
1 parent 7bf94e8 commit f19f2e6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion phploader/test/json.php
@@ -1,6 +1,6 @@
<?php

include("/home/y/share/pear/Yahoo/YUI/loader.php");
include("../loader.php");

$loader = new YAHOO_util_Loader();

Expand Down
2 changes: 1 addition & 1 deletion phploader/test/loader-inc.php
Expand Up @@ -2,7 +2,7 @@

error_reporting(E_ALL);

include("/home/y/share/pear/Yahoo/YUI/loader.php");
include("../loader.php");

// create the loader instance, this sets up the platform config as well,
// which we need right away because we are iterating the packages to
Expand Down
4 changes: 2 additions & 2 deletions phploader/test/test-loader.php
@@ -1,8 +1,8 @@
<?php

//error_reporting(E_ALL);
error_reporting(E_ALL);

include("/home/y/share/pear/Yahoo/YUI/loader.php");
include("../loader.php");

// create the loader instance, this sets up the platform config as well,
// which we need right away because we are iterating the packages to
Expand Down
2 changes: 1 addition & 1 deletion phploader/test/test.php
Expand Up @@ -2,7 +2,7 @@

// header('Content-type: text/ascii');

include("/home/y/share/pear/Yahoo/YUI/loader.php");
include("../loader.php");

function encoded_out($str) {
echo (htmlentities($str));
Expand Down
2 changes: 1 addition & 1 deletion phploader/test/verify.php
Expand Up @@ -2,7 +2,7 @@

error_reporting(E_ALL);

include("/home/y/share/pear/Yahoo/YUI/loader.php");
include("../loader.php");

function verify($name, $url) {

Expand Down

0 comments on commit f19f2e6

Please sign in to comment.