]> git.nbdom.net Git - nb.git/commitdiff
dbq
authorNicolas Boisselier <nicolas.boisselier@gmail.com>
Fri, 9 Dec 2016 17:01:50 +0000 (17:01 +0000)
committerNicolas Boisselier <nicolas.boisselier@gmail.com>
Fri, 9 Dec 2016 17:01:50 +0000 (17:01 +0000)
lib/php/page.php

index a507719f742ea12ac4048b4bbf2a0ddba1b1c969..918f232023a025450e206cf0edd9d59504769ffe 100644 (file)
@@ -184,9 +184,6 @@ class Page extends nb {
    * Function: tag
    * Return html code for a tag
    */
-# NB 06.12.16   public static function h1($content='',$attrs='') { return self::tag('h1',$content,$attrs); }
-# NB 06.12.16   public static function div($content='',$attrs='') { return self::tag('div',$content,$attrs); }
-# NB 06.12.16   public static function pp($content='',$attrs='') { return self::tag('p',$content,$attrs); }
   public static function tag($tag,$content='',$attrs='') {
     static $is_html = null;
     if ($is_html === null) $is_html = preg_match('/ml$/',self::content_type()) ? true : false;