web/enmi/common.php
changeset 248 ffb0a6d08000
parent 247 e6b328970ee8
parent 239 66ac54f9dbf6
child 249 b31aef9365a8
--- a/web/enmi/common.php	Wed Jul 27 12:24:43 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-<?php
-
-/**
- * If you haven't edited php.ini to add the Zend Framework and the
- * Zend Framework Incubator to the PHP include_path, then do so here.
- * Don't use mine!
- */
-set_include_path(
-    '../lib'
-    . PATH_SEPARATOR . get_include_path()
-);
-
-/**
- * Make sure Zend_Oauth's Consumer is loaded
- */
-require_once '../lib/Zend/Oauth/Consumer.php';
-
-/**
- * Start up the ol' session engine
- */
-session_start();
-
-/**
- * Include the configuration data for our OAuth Client (array $configuration)
- */
-include_once './config.php';
-
-/**
- * Setup an instance of the Consumer for use
- */
-$consumer = new Zend_Oauth_Consumer($configuration);