forked from kerphi/phpfreechat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git-svn-id: https://phpfreechat.svn.sourceforge.net/svnroot/phpfreechat/trunk@1271 2772adf2-ac07-0410-9d30-e29d8120292e
- Loading branch information
Showing
4 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/** | ||
* pfccontainer.class.php | ||
* | ||
* Copyright © 2006 Stephane Gully <[email protected]> | ||
* Copyright � 2006 Stephane Gully <[email protected]> | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
|
@@ -54,7 +54,7 @@ function pfcContainer($type = 'File', $usememorycache = true) | |
// create the concrete container instance | ||
require_once dirname(__FILE__)."/containers/".$type.".class.php"; | ||
$container_classname = "pfcContainer_".$type; | ||
$this->_container =& new $container_classname(); | ||
$this->_container = new $container_classname(); | ||
} | ||
function getDefaultConfig() | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ function pfcProxyCommand() | |
|
||
function linkTo(&$cmd) | ||
{ | ||
$this->next =& $cmd; | ||
$this->next = $cmd; | ||
} | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters