updated to the new Pikotools api (new Space struct)
This commit is contained in:
@@ -416,7 +416,7 @@ void item_sort(Info & i)
|
||||
|
||||
void item_meta_str(Info & i)
|
||||
{
|
||||
cur->request->last_item->item_content.meta.Serialize(i.out, true, false);
|
||||
cur->request->last_item->item_content.meta.serialize_to_space_stream(i.out, true);
|
||||
}
|
||||
|
||||
|
||||
@@ -456,7 +456,7 @@ void item_meta_tab_has_next(Info & i)
|
||||
|
||||
void item_admin_meta_str(Info & i)
|
||||
{
|
||||
cur->request->last_item->item_content.meta_admin.Serialize(i.out, true, false);
|
||||
cur->request->last_item->item_content.meta_admin.serialize_to_space_stream(i.out, true);
|
||||
}
|
||||
|
||||
|
||||
@@ -848,7 +848,7 @@ void item_tab_has_next(Info & i)
|
||||
void item_tab_meta_str(Info & i)
|
||||
{
|
||||
if( item_index < cur->request->item_tab.size() )
|
||||
cur->request->item_tab[item_index].item_content.meta.Serialize(i.out, true, false);
|
||||
cur->request->item_tab[item_index].item_content.meta.serialize_to_space_stream(i.out, true);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user