Comment out the removeAttributes function

Signed-off-by: Eric Poirier <eric.poirier@eclipse-foundation.org>
diff --git a/index.php b/index.php
index c66fc7a..0c3f2f3 100644
--- a/index.php
+++ b/index.php
@@ -16,7 +16,7 @@
 require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/classes/friends/payment.class.php");
 
 $App = new App();
-$Theme = $App->getThemeClass('solstice');
+$Theme = $App->getThemeClass();
 $Paypal = new Paypal();
 
 $App->preventCaching();
@@ -37,5 +37,5 @@
 $html = ob_get_clean();
 
 $Theme->setHtml($html);
-$Theme->removeAttributes('breadcrumbs', 'breadcrumbs-default-margin');
+//$Theme->removeAttributes('breadcrumbs', 'breadcrumbs-default-margin');
 $Theme->generatePage();