Index: trunk/extensions/EducationProgram/includes/EPOrgPager.php |
— | — | @@ -106,7 +106,7 @@ |
107 | 107 | } |
108 | 108 | |
109 | 109 | function getDefaultSort() { |
110 | | - return EPOrgs::singleton()->getPrefixedField( 'name' ); |
| 110 | + return 'name'; |
111 | 111 | } |
112 | 112 | |
113 | 113 | /** |
Index: trunk/extensions/EducationProgram/includes/EPPager.php |
— | — | @@ -263,7 +263,7 @@ |
264 | 264 | } |
265 | 265 | |
266 | 266 | function getDefaultSort() { |
267 | | - return $this->table->getPrefixedField( 'id' ); |
| 267 | + return 'id'; |
268 | 268 | } |
269 | 269 | |
270 | 270 | /** |
Index: trunk/extensions/EducationProgram/includes/EPArticlePager.php |
— | — | @@ -91,7 +91,7 @@ |
92 | 92 | } |
93 | 93 | |
94 | 94 | function getDefaultSort() { |
95 | | - return $this->table->getPrefixedField( 'user_id' ); |
| 95 | + return 'user_id'; |
96 | 96 | } |
97 | 97 | |
98 | 98 | } |