cosmetics.
authorx2000habouzit <x2000habouzit@839d8a87-29fc-0310-9880-83ba4fa771e5>
Sun, 22 Oct 2006 23:00:12 +0000 (23:00 +0000)
committerx2000habouzit <x2000habouzit@839d8a87-29fc-0310-9880-83ba4fa771e5>
Sun, 22 Oct 2006 23:00:12 +0000 (23:00 +0000)
that class is not pure yet, cannot move into classes/

 vcard.inc.php |   10 ----------
 1 files changed, 10 deletions(-)

git-svn-id: svn+ssh://murphy/home/svn/platal/trunk@1016 839d8a87-29fc-0310-9880-83ba4fa771e5

include/vcard.inc.php

index 2e39463..749af3d 100644 (file)
@@ -37,8 +37,6 @@ class VCard
         }
     }
 
-    // {{{ text formatting stuff
-
     function escape($text)
     {
         return preg_replace('/[,;:]/', '\\\\$0', $text);
@@ -67,9 +65,6 @@ class VCard
         return preg_replace("/(\r\n|\n|\r)/", '\n', $text);
     }
 
-    // }}}
-    // {{{ function add_user()
-
     function add_user($x, $freetext)
     {
         global $globals;
@@ -114,9 +109,6 @@ class VCard
         $this->users[] = $user;
     }
 
-    // }}}
-    // {{{ function do_page()
-
     function do_page(&$page)
     {
         $page->changeTpl('vcard.tpl', NO_SKIN);
@@ -129,8 +121,6 @@ class VCard
         header("Content-type: text/x-vcard; charset=iso-8859-15");
         header("Content-Transfer-Encoding: 8bit");
     }
-
-    // }}}
 }
 
 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker: