summaryrefslogtreecommitdiff
path: root/idiorm.php
diff options
context:
space:
mode:
authorSander Marechal <[email protected]>2011-03-03 08:30:37 +0100
committerSander Marechal <[email protected]>2011-03-03 08:30:37 +0100
commit089336fcd9417d6c4e40be802b3dec37b11c7d51 (patch)
treeff4cd97deb4e4cadd26ef6191ed6411df5957dd3 /idiorm.php
parentb58b452dfa6de53f3864a78cfba9eef1842b95d5 (diff)
Rename order_raw to order_by_expr
Diffstat (limited to 'idiorm.php')
-rw-r--r--idiorm.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/idiorm.php b/idiorm.php
index b4e4f7d..3dd49b0 100644
--- a/idiorm.php
+++ b/idiorm.php
@@ -749,9 +749,9 @@
}
/**
- * Add a raw ORDER BY clause
+ * Add an unquoted expression as an ORDER BY clause
*/
- public function order_raw($clause) {
+ public function order_by_expr($clause) {
$this->_order_by[] = $clause;
return $this;
}