1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-02 12:48:26 +02:00

check for sub link defines

This commit is contained in:
sweetas
2007-06-11 09:26:06 +00:00
parent 21b03a5bc8
commit c4bafb67d7

View File

@@ -12,9 +12,9 @@
| GNU General Public License (http://gnu.org). | GNU General Public License (http://gnu.org).
| |
| $Source: /cvs_backup/e107_0.8/e107_handlers/sitelinks_class.php,v $ | $Source: /cvs_backup/e107_0.8/e107_handlers/sitelinks_class.php,v $
| $Revision: 1.7 $ | $Revision: 1.8 $
| $Date: 2007-05-16 20:24:30 $ | $Date: 2007-06-11 09:26:06 $
| $Author: e107steved $ | $Author: sweetas $
+---------------------------------------------------------------+ +---------------------------------------------------------------+
*/ */
@@ -92,6 +92,9 @@ class sitelinks
$style['linkdisplay'] = defined('LINKDISPLAY') ? LINKDISPLAY : ''; $style['linkdisplay'] = defined('LINKDISPLAY') ? LINKDISPLAY : '';
$style['linkend'] = defined('LINKEND') ? LINKEND : ''; $style['linkend'] = defined('LINKEND') ? LINKEND : '';
$style['linkseparator'] = defined('LINKSEPARATOR') ? LINKSEPARATOR : ''; $style['linkseparator'] = defined('LINKSEPARATOR') ? LINKSEPARATOR : '';
$style['sublinkstart'] = defined('SUBLINKSTART') ? SUBLINKSTART : '';
$style['sublinkend'] = defined('SUBLINKEND') ? SUBLINKEND : '';
$style['sublinkclass'] = defined('SUBLINKCLASS') ? SUBLINKCLASS : '';
} }
// Sublink styles.- replacing the tree-menu. // Sublink styles.- replacing the tree-menu.