diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2007-01-06 09:46:19 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2007-01-06 09:46:19 +0000 |
| commit | 612de9ac8e796e1fc5721408f4c258d7ab81f6c6 (patch) | |
| tree | 958344012d05b7bc34b1a10b76d3ea26d70761de /Pigeonholes.php | |
| parent | 3a4bc0f1289984fcc3af5df55d462f5b6c987561 (diff) | |
| download | pigeonholes-612de9ac8e796e1fc5721408f4c258d7ab81f6c6.tar.gz pigeonholes-612de9ac8e796e1fc5721408f4c258d7ab81f6c6.tar.bz2 pigeonholes-612de9ac8e796e1fc5721408f4c258d7ab81f6c6.zip | |
rename some methods in BitDbBase to meet bitweaver standards. all changes backwards compatible with deprecated function call message.
Diffstat (limited to 'Pigeonholes.php')
| -rw-r--r-- | Pigeonholes.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Pigeonholes.php b/Pigeonholes.php index 921cb46..33974af 100644 --- a/Pigeonholes.php +++ b/Pigeonholes.php @@ -1,6 +1,6 @@ <?php /** - * @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/Pigeonholes.php,v 1.77 2006/12/25 21:44:04 squareing Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_pigeonholes/Pigeonholes.php,v 1.78 2007/01/06 09:46:19 squareing Exp $ * * +----------------------------------------------------------------------+ * | Copyright ( c ) 2004, bitweaver.org @@ -17,7 +17,7 @@ * Pigeonholes class * * @author xing <xing@synapse.plus.com> - * @version $Revision: 1.77 $ + * @version $Revision: 1.78 $ * @package pigeonholes */ @@ -192,7 +192,7 @@ class Pigeonholes extends LibertyContent { } if( !empty( $pListHash['sort_mode'] ) ) { - $order = " ORDER BY ".$this->mDb->convert_sortmode( $pListHash['sort_mode'] )." "; + $order = " ORDER BY ".$this->mDb->convertSortmode( $pListHash['sort_mode'] )." "; } else { $order = " ORDER BY lc.`content_type_guid`, lc.`title` ASC"; } @@ -408,7 +408,7 @@ class Pigeonholes extends LibertyContent { } if( !empty( $pListHash['sort_mode'] ) ) { - $order .= " ORDER BY ".$this->mDb->convert_sortmode( $pListHash['sort_mode'] )." "; + $order .= " ORDER BY ".$this->mDb->convertSortmode( $pListHash['sort_mode'] )." "; } else { // default sort mode makes list look nice $order .= " ORDER BY ls.`root_structure_id`, ls.`structure_id` ASC"; |
