diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-18 10:44:15 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-04-18 10:44:15 +0000 |
commit | 409b97622bcc9492da25f651a58f6fe37a21f456 (patch) | |
tree | 6648d88d962508fc9d114217a95ac9f6bd5bd148 | |
parent | 962c7074ff6c23567edb0c86c98d627b3abbc648 (diff) | |
download | elgg-409b97622bcc9492da25f651a58f6fe37a21f456.tar.gz elgg-409b97622bcc9492da25f651a58f6fe37a21f456.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Hardcoded sessions no longer necessary now that login works
git-svn-id: https://code.elgg.org/elgg/trunk@488 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/exporttest/index.php | 1 | ||||
-rw-r--r-- | mod/guidbrowser/index.php | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/mod/exporttest/index.php b/mod/exporttest/index.php index 6857df16f..3c1320e1f 100644 --- a/mod/exporttest/index.php +++ b/mod/exporttest/index.php @@ -15,7 +15,6 @@ $guid = get_input("guid"); $action = get_input("action"); - $_SESSION['id'] = 2; // Get the user $owner_id = page_owner(); diff --git a/mod/guidbrowser/index.php b/mod/guidbrowser/index.php index d842367a5..49d6f8824 100644 --- a/mod/guidbrowser/index.php +++ b/mod/guidbrowser/index.php @@ -11,9 +11,6 @@ require_once("../../engine/start.php"); - $_SESSION['guid'] = 2; - $_SESSION['id'] = 2; - $eguid = get_input('eguid'); $limit = get_input('limit', 10); $offset = get_input('offset'); |