diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2009-12-11 03:13:01 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2009-12-11 03:14:28 +0100 |
commit | e98422a09892675f23852320e0d46b4071bf22b4 (patch) | |
tree | fad35f88652a9abee2dfc5964d15e76d4bb71563 /paste/config.php | |
parent | 0398f1f363d5affba0633c104eaf22c1100f8e80 (diff) | |
download | rafb-nopaste-e98422a09892675f23852320e0d46b4071bf22b4.tar.gz rafb-nopaste-e98422a09892675f23852320e0d46b4071bf22b4.tar.xz rafb-nopaste-e98422a09892675f23852320e0d46b4071bf22b4.zip |
seperated storage classes
Diffstat (limited to 'paste/config.php')
-rw-r--r-- | paste/config.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/paste/config.php b/paste/config.php index 2a41d7b..66d655a 100644 --- a/paste/config.php +++ b/paste/config.php @@ -1,4 +1,4 @@ -<? +<?php /* This software is licensed through a BSD-style License. http://www.opensource.org/licenses/bsd-license.php @@ -51,4 +51,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 'token_salt' => 'saltsaltsalt', ); +require_once('include/storage/FileStorage.php'); +$storage = new MysqlStorage('mysql', 'rafb', 'rafb', 'paste', 'rafb'); ?> |