[pLog-svn] r4927 - plugins/branches/lifetype-1.2/cookie
jondaley at devel.lifetype.net
jondaley at devel.lifetype.net
Fri Mar 2 11:55:45 EST 2007
Author: jondaley
Date: 2007-03-02 11:55:45 -0500 (Fri, 02 Mar 2007)
New Revision: 4927
Modified:
plugins/branches/lifetype-1.2/cookie/plugincookie.class.php
Log:
forgot to the add the source parameter, and an unrelated typo
Modified: plugins/branches/lifetype-1.2/cookie/plugincookie.class.php
===================================================================
--- plugins/branches/lifetype-1.2/cookie/plugincookie.class.php 2007-03-02 16:51:26 UTC (rev 4926)
+++ plugins/branches/lifetype-1.2/cookie/plugincookie.class.php 2007-03-02 16:55:45 UTC (rev 4927)
@@ -4,8 +4,8 @@
class PluginCookie extends PluginBase {
- function PluginCookie(){
- $this->PluginBase();
+ function PluginCookie($source = ""){
+ $this->PluginBase($source);
$this->desc = "This plugin allows you to access cookie variables from with the templates.";
$this->author = "Jon Daley";
$this->id="cookie";
@@ -33,7 +33,7 @@
// commented out until I fix the caching issue
//if($default_sheet == ""){
- //$default_sheet = "Default";
+ $default_sheet = "Default";
//}
foreach($sheets as $sheet){
More information about the pLog-svn
mailing list