openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 4c9a64f600c72f9329cf02ff88e3eb727263a6ca
parent 0654bcb19a0c96fc3b62b4d4fb8581e987836b88
Author: dankert <devnull@localhost>
Date:   Sun, 26 Dec 2004 21:21:04 +0100

*** empty log message ***

Diffstat:
actionClasses/PageelementAction.class.php | 11+++++++----
1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/actionClasses/PageelementAction.class.php b/actionClasses/PageelementAction.class.php @@ -20,7 +20,10 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ -// Revision 1.12 2004-12-26 01:08:55 dankert +// Revision 1.13 2004-12-26 20:21:04 dankert +// *** empty log message *** +// +// Revision 1.12 2004/12/26 01:08:55 dankert // Korrektur Sprachausgabe // // Revision 1.11 2004/12/26 01:06:31 dankert @@ -154,11 +157,11 @@ class PageelementAction extends Action if ( $o->getType() != 'folder' ) { $f = new Folder( $o->parentid ); - $f->load(); +// $f->load(); $objects[ $id ] = lang( 'GLOBAL_'.$o->getType() ).': '; - $objects[ $id ] .= implode( ' &raquo; ',$f->parentObjectNames(false,true) ); - $objects[ $id ] .= ' &raquo; '.$o->name; + $objects[ $id ] .= implode( FILE_SEP,$f->parentObjectNames(false,true) ); + $objects[ $id ] .= FILE_SEP.$o->name; } }