Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions application/controllers/admin/fcpayone_apilog_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,18 @@ class fcpayone_apilog_list extends fcpayone_adminlist
protected $_sListClass = 'fcporequestlog';

/**
* Default SQL sorting parameter (default null).
* Default sorting field
*
* @var string
*/
protected $_sDefSort = "fcporequestlog.oxtimestamp desc";
protected $_sDefSortField = 'oxtimestamp';

/**
* Enable/disable sorting by DESC (SQL) (default false - disable).
*
* @var bool
*/
protected $_blDesc = true;

/**
* Current class template name
Expand Down
11 changes: 9 additions & 2 deletions application/controllers/admin/fcpayone_log_list.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,18 @@ class fcpayone_log_list extends fcpayone_adminlist
protected $_sListClass = 'fcpotransactionstatus';

/**
* Default SQL sorting parameter (default null).
* Default sorting field
*
* @var string
*/
protected $_sDefSort = "fcpotransactionstatus.oxtimestamp desc";
protected $_sDefSortField = 'oxtimestamp';

/**
* Enable/disable sorting by DESC (SQL) (default false - disable).
*
* @var bool
*/
protected $_blDesc = true;

/**
* Current class template name
Expand Down
2 changes: 1 addition & 1 deletion application/views/admin/tpl/fcpayone_apilog_main.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<!-- frames -->
<frameset rows="40%,*" border="0">
<frame src="[{$oViewConf->getSelfLink()}][{$oView->fcGetAdminSeperator()}][{ $listurl }][{ if $oxid }]&oxid=[{$oxid}][{/if}]" name="list" marginwidth="0" marginheight="0" scrolling="off" frameborder="0">
<frame src="[{$oViewConf->getSelfLink()}][{$oView->fcGetAdminSeperator()}][{ $listurl }][{ if $oxid }]&oxid=[{$oxid}][{/if}]" name="list" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0">
<frame src="[{$oViewConf->getSelfLink()}][{$oView->fcGetAdminSeperator()}][{ $editurl }][{ if $oxid }]&oxid=[{$oxid}][{/if}]" name="edit" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0">
</frameset>

Expand Down
2 changes: 1 addition & 1 deletion application/views/admin/tpl/fcpayone_protocol.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<!-- frames -->
<frameset rows="40%,*" border="0">
<frame src="[{$oViewConf->getSelfLink()}][{$oView->fcGetAdminSeperator()}][{ $listurl }][{ if $oxid }]&oxid=[{$oxid}][{/if}]" name="list" marginwidth="0" marginheight="0" scrolling="off" frameborder="0">
<frame src="[{$oViewConf->getSelfLink()}][{$oView->fcGetAdminSeperator()}][{ $listurl }][{ if $oxid }]&oxid=[{$oxid}][{/if}]" name="list" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0">
<frame src="[{$oViewConf->getSelfLink()}][{$oView->fcGetAdminSeperator()}][{ $editurl }][{ if $oxid }]&oxid=[{$oxid}][{/if}]" name="edit" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0">
</frameset>

Expand Down