Author: COil
Date: 2010-01-22 10:58:37 +0100 (Fri, 22 Jan 2010)
New Revision: 27032
Modified:
plugins/sfTCPDFPlugin/branches/1.2/lib/sfTCPDF.class.php
Log:
[sfTCPDFPlugin] reverted wrong commit
Modified: plugins/sfTCPDFPlugin/branches/1.2/lib/sfTCPDF.class.php
===================================================================
--- plugins/sfTCPDFPlugin/branches/1.2/lib/sfTCPDF.class.php 2010-01-22
08:36:36 UTC (rev 27031)
+++ plugins/sfTCPDFPlugin/branches/1.2/lib/sfTCPDF.class.php 2010-01-22
09:58:37 UTC (rev 27032)
@@ -53,7 +53,6 @@
* @access public
* @see $headerCallback
*/
- /*
public function Header()
{
if ($this->print_header)
@@ -68,7 +67,6 @@
}
}
}
- */
/**
* This method is used to render the page footer.
@@ -77,7 +75,6 @@
* @access public
* @see $footerCallback
*/
- /*
public function Footer()
{
if ($this->print_footer)
@@ -92,7 +89,6 @@
}
}
}
- */
/**
* Magic setter.
@@ -100,11 +96,10 @@
* @param String $name
* @param mixed $value
*/
- /*
public function __set($name, $value)
{
$this->userData[$name] = $value;
- }*/
+ }
/**
* Magic getter.
@@ -112,7 +107,6 @@
* @param String $name Name of data key to return
* @return mixed
*/
- /*
public function __get($name)
{
if (array_key_exists($name, $this->userData))
@@ -127,7 +121,7 @@
);
return null;
- }*/
+ }
/**
* Test existence of user data.
@@ -135,20 +129,18 @@
* @param String $name
* @return Boolean
*/
- /*
public function __isset($name)
{
return isset($this->userData[$name]);
- }*/
+ }
/**
* Unset user data.
*
* @param String $name
*/
- /*
public function __unset($name)
{
unset($this->userData[$name]);
- }*/
+ }
}
\ No newline at end of file
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.