From 57cc740fae032cdfbea21a7074557765ec9c18ff Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Wed, 6 Aug 2008 13:45:30 +0000 Subject: Central: Fixed deserialization For some reason, my reference book lists the deserialization function as deserialize(), but the online docs say unserialize() --- central/trunk/instadisc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'central/trunk/instadisc.php') diff --git a/central/trunk/instadisc.php b/central/trunk/instadisc.php index 6735f32..4a9d725 100644 --- a/central/trunk/instadisc.php +++ b/central/trunk/instadisc.php @@ -71,7 +71,7 @@ function instaDisc_sendItem($username, $id) $out .= 'Author: ' . $getitem3['author'] . "\r\n"; $out .= 'URL: ' . $getitem3['url'] . "\r\n"; - $semantics = deserialize($getitem3['semantics']); + $semantics = unserialize($getitem3['semantics']); foreach ($semantics as $name => $value) { $out .= $name . ': ' . $value . "\r\n"; -- cgit 1.4.1