Changeset 1946
- Timestamp:
- 12/08/09 11:40:31 (14 years ago)
- Location:
- plugins/dotajax
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dotajax/_define.php
r1679 r1946 26 26 /* Description*/ "Ajax/JSON interface for Dotclear2", 27 27 /* Author */ "Bruno Hondelatte", 28 /* Version */ '1.0 ',28 /* Version */ '1.0.1', 29 29 /* Permissions */ 'usage,contentadmin', 30 30 /* Priority */ 500 -
plugins/dotajax/class.blogrest.php
r1679 r1946 28 28 $allowed_params=array('post_id','post_url','user_id','cat_id','cat_url', 29 29 'post_selected','post_year','post_month','post_day','post_lang', 30 'search','order','limit','post_type' );30 'search','order','limit','post_type','offset'); 31 31 $no_content=isset($get['no_content']); 32 32 $count_only = isset($get['count_only']); … … 39 39 if ($no_content) 40 40 $params['no_content']=1; 41 42 if (isset($params['offset']) && isset($params['limit'])) { 43 $params['limit'] = array($params['offset'],$params['limit']); 44 unset($params['offset']); 45 } 41 46 42 47
Note: See TracChangeset
for help on using the changeset viewer.