Skip to content

Commit

Permalink
- Fixed bug #5766: Typo in shop/module.php.
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/patrick.allaert/svn-git/ezp-repo/ezpublish/stable/3.5@12499 a01eee8c-daba-0310-acae-fa49f3023285
  • Loading branch information
Valentin Doroschuk committed Jul 13, 2005
1 parent b524014 commit 1d3154c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions doc/changelogs/3.5/unstable/CHANGELOG-3.5.4rc1-to-3.5.4
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ Changes from 3.5.4rc1 to 3.5.4
- Fixed bug #6861: Two emails were sent to the user being registered.
- Fixed bug #6884: Wrong customer name in order details.
- Fixed bug #6757: eZMail does not set the required Date header.
- Fixed bug #5766: Typo in shop/module.php.

*Translations:
12 changes: 6 additions & 6 deletions kernel/shop/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,34 +78,34 @@
"params" => array( ) );

$ViewList["orderlist"] = array(
"functions" => array( 'adminstrate' ),
"functions" => array( 'administrate' ),
"script" => "orderlist.php",
"default_navigation_part" => 'ezshopnavigationpart',
"unordered_params" => array( "offset" => "Offset" ),
"params" => array( ) );

$ViewList["removeorder"] = array(
"functions" => array( 'adminstrate' ),
"functions" => array( 'administrate' ),
"script" => "removeorder.php",
'ui_context' => 'edit',
"default_navigation_part" => 'ezshopnavigationpart',
"params" => array() );

$ViewList["customerlist"] = array(
"functions" => array( 'adminstrate' ),
"functions" => array( 'administrate' ),
"script" => "customerlist.php",
"default_navigation_part" => 'ezshopnavigationpart',
"unordered_params" => array( 'offset' => 'Offset' ),
"params" => array( ) );

$ViewList["customerorderview"] = array(
"functions" => array( 'adminstrate' ),
"functions" => array( 'administrate' ),
"script" => "customerorderview.php",
"default_navigation_part" => 'ezshopnavigationpart',
"params" => array( "CustomerID", "Email" ) );

$ViewList["statistics"] = array(
"functions" => array( 'adminstrate' ),
"functions" => array( 'administrate' ),
"script" => "orderstatistics.php",
"default_navigation_part" => 'ezshopnavigationpart',
"params" => array( 'Year', 'Month' ) );
Expand Down Expand Up @@ -156,7 +156,7 @@
"params" => array( 'DiscountGroupID' ) );

$FunctionList['setup'] = array( );
$FunctionList['adminstrate'] = array( );
$FunctionList['administrate'] = array( );
$FunctionList['buy'] = array( );

?>

0 comments on commit 1d3154c

Please sign in to comment.