summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2007-01-06 09:46:19 +0000
committerMax Kremmel <xing@synapse.plus.com>2007-01-06 09:46:19 +0000
commit6b538ed6fe68669807edef13974bc543c973c7d9 (patch)
treeccc0cb52821030471c78bfb9e483f19217fed292
parent881be9228acb5f20dff31f7f1566f1c053ba9945 (diff)
downloadnexus-6b538ed6fe68669807edef13974bc543c973c7d9.tar.gz
nexus-6b538ed6fe68669807edef13974bc543c973c7d9.tar.bz2
nexus-6b538ed6fe68669807edef13974bc543c973c7d9.zip
rename some methods in BitDbBase to meet bitweaver standards. all changes backwards compatible with deprecated function call message.
-rw-r--r--Nexus.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Nexus.php b/Nexus.php
index 6a5537f..07ab3d7 100644
--- a/Nexus.php
+++ b/Nexus.php
@@ -4,7 +4,7 @@
*
* @abstract
* @author xing <xing@synapse.plus.com>
-* @version $Revision: 1.17 $
+* @version $Revision: 1.18 $
* @package nexus
*/
@@ -84,7 +84,7 @@ class Nexus extends NexusSystem {
$bindVars[] = '%'.strtoupper( $pFindString ).'%';
}
if( $pSortMode ) {
- $mid .= " ORDER BY ".$this->mDb->convert_sortmode( $pSortMode )." ";
+ $mid .= " ORDER BY ".$this->mDb->convertSortmode( $pSortMode )." ";
}
$query = 'SELECT nm.`menu_id` FROM `'.BIT_DB_PREFIX.'nexus_menus` nm'.$mid;