phalkunz b148ddf16e MINOR: refactored - move mollom method to MollomServer so that later we can add server error/exception handling without touching MollomField
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/branches/2.3@71749 467b73ca-7a2a-4603-9d3b-597d59a354a9
2011-02-02 18:57:17 +13:00

19 lines
474 B
PHP

<?php
global $project;
$project = 'mysite';
global $database;
$database = "SS_ssinstaller2_3";
require_once("conf/ConfigureFromEnv.php");
// This line set's the current theme. More themes can be
// downloaded from http://www.silverstripe.com/themes/
SSViewer::set_theme('blackcandy');
Mollom::setPublicKey("1819023dfcb10a667d10bd1578c5f39b");
Mollom::setPrivateKey("2430fcbd65756ac6732a54a7c9ada116");
SpamProtecterManager::set_spam_protecter('MollomSpamProtector')
?>