In-Portal Issue Tracker

Welcome to the In-Portal Open Source CMS Issue Tracker! This is a central management / tracking tool for all types of tasks / issues / bugs for the In-Portal Project. Before reporting any issues, please make sure to read the Guide into Issue Tracker and How to Properly Test and Report Bugs!

Viewing Issue Simple Details Jump to Notes ] Wiki ]  Related Changesets ] View Advanced ] Issue History ] Print ]
ID Category Type Reproducibility Date Submitted Last Update
0000579 [In-Portal CMS] Other task always 2010-02-15 16:22 2010-07-22 15:06
Reporter Dmitry View Status public Project Name In-Portal CMS
Assigned To alex Developer
Priority normal Resolution fixed Fixed in Version 5.1.0-B1
Status closed Product Version Target Version 5.1.0
Time EstimateNo estimate
Summary 0000579: Ability to use PerPage, SortBy and Page params from URL Query
Description We are looking for a way to extend functionality for using PerPage,
SortBy and Page params from URL Query. Here is a quick outline of
things to do:


New Query Params Usage:

1. Tag PageLink will include parameters "page,per_page,sort_by" from
request, when available (only pass them, when differ, from default
values from unit config of that prefix)

2. Pass main_list="1" to InitList/PrintList of main list on the page
(one list per page)

3. When main_list parameter is given, then during list initialization
use page,per_page,sort_by from url to initialize list

4. Remove "action" attribute from <form> tags on front-end

5. Events OnSetPage, OnSetPerPage, OnSetSorting* should not add
associated with them url parameter (page,per_page,sort_by), when it's
value is equals to default value from unit config of main list being
used.


New Query Params Storage:

1. don't store page,page,sorting in session on Front-End (setting in
debug.php)

2. store page,page,sorting in cookie (expiration until browser is
closed) in format "<prefix>_var", e.g. "product_page".
Additional Information
Tags No tags attached.
Reference http://groups.google.com/group/in-portal-dev/browse_thread/thread/c722936e20596265
Change Log Message Better handling for PerPage, SortBy and Page URL parameters
Estimate Points 0
Attached Files patch file icon per_page_in_unit_configs.patch [^] (37,875 bytes) 2010-02-23 14:03 [Show Content]
patch file icon per_page_in_unit_configs_core.patch [^] (70,427 bytes) 2010-02-24 04:43 [Show Content]
patch file icon per_page_in_unit_configs_themes.patch [^] (5,751 bytes) 2010-02-24 05:02 [Show Content]
patch file icon per_page_in_unit_configs_themes-Advanced-Dmitry-20100425.patch [^] (16,207 bytes) 2010-04-25 19:03 [Show Content]

- Relationships Relation Graph ] Dependency Graph ]
related to 0000107closed (5.1.0)alex Implement "MemCached" functionality 
parent of 0000913closed (5.1.1)alex Warning, when unit doesn't have ListSortings option 
parent of 0001042closed (5.1.3)alex Broken Pagination for Sub-Items Grids 
related to 0000795closed (5.1.0)alex Issues with Pagination on Form Submissions grid 

-  Notes
User avatar (0001482)
alex (manager)
2010-02-24 05:12
edited on: 2010-04-25 18:20

Because of a lot of changes I've commited them before testing, so it would be easier to test later.

Main list is list in front-end template, that has been initialized using main_list="1" parameter in InitList tag. Changes described above will only affect Front-End. Please test, that Admin lists are not broken.

Changes made:
=============
1. Url parameter "sort_by" is added to urls, when non-default sorting is selected for main lists instead of storing sorting in session (Front-End Only).

2. New parameter "PerPage" added to each prefix query string in it's unit config resulting per-page change to appear in "env" variable in url instead of session (for main lists only and when mod-rewrite is off).

3. New parameters "per_page" and "page" added to url to represent current per-page and page in main list (ONLY when mod-rewrite is on) preventing them from being stored in session.

Notes:
======
1. It's possible, that not all main lists in all themes have main_list="1" parameter passed, so it also needs to be checked.

2. Only one list per-page page can be marked as main list and will react to url parameters mentioned above.

3. I've changed query string for some in-auction module unit configs as well, that contained custom "type" component in them. That component now has different position in query string, so if there is any code with hardcoded "env" strings using that prefixes, then it won't work.

I was unable to find examples of that code or any uses of "type" parameter though.

User avatar (0001940)
Dmitry (manager)
2010-04-25 19:12
edited on: 2010-04-25 19:13

Tested and mostly it's working as expected - Good!


A few comments, questions:

1. Please find attached patch for Advanced theme - it should replace your Theme patch.

2. Based on your statement:

New parameters "per_page" and "page" added to url to represent current per-page and page in main list (ONLY when mod-rewrite is on) preventing them from being stored in session.

BUT I believe I still get the opposite:

http://www.jurmala.com/SVN/in-portal-5.1.x/index.php?env=-in-commerce/products/search_results:m0-1-1-4-s-:p--1-20--&sort_by=Price,desc&per_page=20

In the end it works correctly, but I have noticed it's controversial with your statement!


3. What will happen with other Pagination and sorting lists that don't have Main_list="1" passed?

For example:

a. I have 2 lists on the same page (very rare, but possible - ie. eGov site) - Categories with Sorting/Pagination/PerPage and Links with Sorting/Pagination/PerPage

b. I have list of Orders under MyAccount - am I able to have Sorting/Pagination for that list?


I believe we are close to getting it done here!

Thanks.

User avatar (0001958)
Dmitry (manager)
2010-04-26 16:01

Fixes applied (by alex, test locally by myself) - ready to commit.
User avatar (0001959)
alex (manager)
2010-04-26 16:02

1st and 2nd item from 0000579:0001940 note fixed and commited.

3rd item will be tested on Beta testing phase.
User avatar (0002557)
alex (manager)
2010-07-22 15:06

Closing, since 5.1.0 release has been released.

- Related Changesets
In-Portal CMS: 5.1.x r13405
Timestamp: 2010-04-26 15:59:36
Author: alex
Details ] Diff ]
1. Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
2. Problem, that we have "per_page" in url for products even, when mod-rewrite is not used.
mod - /in-portal/branches/5.1.x/core/kernel/db/db_event_handler.php Diff ] File ]
Themes :: Advanced: 1.1.x r13404
Timestamp: 2010-04-26 15:57:12
Author: alex
Details ] Diff ]
1. Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
2. Commit on behalf of Dmitry.
mod - /themes/advanced/branches/1.1.x/in-bulletin/topics/search_results.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/elements/content_boxes/my_favorites.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/products/featured_products.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/products/manufacturer_products.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/products/new_products.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/products/pick_products.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/products/recent_products.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/products/search_results.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/products/top_seller_products.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/elements/content_boxes/my_favorites.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/links/hot_links.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/links/new_links.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/links/pick_links.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/links/pop_links.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/links/search_results.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/articles/hot_articles.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/articles/new_articles.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/articles/pick_articles.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/articles/pop_articles.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/articles/search_results.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/elements/content_boxes/my_favorites.elm.tpl Diff ] File ]
Themes :: Advanced: 1.1.x r13160
Timestamp: 2010-02-24 05:02:51
Author: alex
Details ] Diff ]
Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
mod - /themes/advanced/branches/1.1.x/in-commerce/designs/section.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-commerce/elements/sorting.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/designs/section.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-link/elements/sorting.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/designs/section.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/in-news/elements/sorting.elm.tpl Diff ] File ]
mod - /themes/advanced/branches/1.1.x/platform/elements/pagination.elm.tpl Diff ] File ]
In-Portal CMS: 5.1.x r13159
Timestamp: 2010-02-24 04:45:00
Author: alex
Details ] Diff ]
Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
mod - /in-portal/branches/5.1.x/core/kernel/db/cat_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/cat_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/db_event_handler.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/db_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/db/dblist.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/event_manager.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/kernel/processors/main_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/agents/agents_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/ban_rules/ban_rules_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/categories/categories_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/categories/categories_tag_processor.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/category_items/category_items_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/config_search/config_search_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/configuration/configuration_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/content/content_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/custom_fields/custom_fields_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/email_events/email_events_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/email_queue/email_queue_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/favorites/favorites_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/files/files_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/form_fields/form_fields_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/form_submissions/form_submissions_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/forms/forms_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/groups/groups_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/helpers_config.php Diff ] File ]
add - /in-portal/branches/5.1.x/core/units/helpers/list_helper.php File ]
mod - /in-portal/branches/5.1.x/core/units/helpers/mod_rewrite_helper.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/images/images_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/languages/languages_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/logs/change_logs/change_logs_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/logs/email_logs/email_logs_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/logs/search_logs/search_logs_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/logs/session_logs/session_logs_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/mailing_lists/mailing_lists_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/modules/modules_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/permissions/permissions_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/phrases/phrases_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/related_searches/related_searches_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/relationship/relationship_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/reviews/reviews_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/selectors/selectors_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/skins/skins_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/spelling_dictionary/spelling_dictionary_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/statistics/statistics_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/stop_words/stop_words_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/structure/structure_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/stylesheets/stylesheets_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/theme_files/theme_files_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/themes/themes_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/thesaurus/thesaurus_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/user_groups/user_groups_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/user_profile/user_profile_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/users/users_config.php Diff ] File ]
mod - /in-portal/branches/5.1.x/core/units/visits/visits_config.php Diff ] File ]
Modules :: In-News: 5.1.x r13158
Timestamp: 2010-02-23 14:12:30
Author: alex
Details ] Diff ]
Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
mod - /modules/in-news/branches/5.1.x/units/articles/articles_config.php Diff ] File ]
Modules :: In-Link: 5.1.x r13157
Timestamp: 2010-02-23 14:12:11
Author: alex
Details ] Diff ]
Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
mod - /modules/in-link/branches/5.1.x/units/l-visits/l-visits_config.php Diff ] File ]
mod - /modules/in-link/branches/5.1.x/units/link_validation/link_validation_config.php Diff ] File ]
mod - /modules/in-link/branches/5.1.x/units/links/links_config.php Diff ] File ]
mod - /modules/in-link/branches/5.1.x/units/listing_types/listing_types_config.php Diff ] File ]
mod - /modules/in-link/branches/5.1.x/units/listings/listings_config.php Diff ] File ]
Modules :: In-Commerce: 5.1.x r13156
Timestamp: 2010-02-23 14:11:38
Author: alex
Details ] Diff ]
Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
mod - /w/in-commerce/branches/5.1.x/units/addresses/addresses_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/affiliate_payment_types/affiliate_payment_types_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/affiliate_payments/affiliate_payments_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/affiliate_plans/affiliate_plans_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/affiliate_plans_brackets/affiliate_plans_brackets_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/affiliate_plans_items/affiliate_plans_items_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/affiliates/affiliates_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/brackets/brackets_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/coupon_items/coupon_items_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/coupons/coupons_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/currencies/currencies_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/destinations/destinations_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/discount_items/discount_items_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/discounts/discounts_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/downloads/downloads_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/files/files_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateway_field_values/gateway_field_values_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gateways/gateways_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/gift_certificates/gift_certificates_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/manufacturers/manufacturers_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/order_items/order_items_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/orders/orders_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/payment_type/payment_type_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/payment_type_currencies/payment_type_currencies_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/pricing/pricing_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/product_option_combinations/product_option_combinations_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/product_options/product_options_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/products/products_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/reports/reports_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/shipping/shipping_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/shipping_costs/shipping_costs_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/shipping_quote_engines/shipping_quote_engines_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/taxes/taxes_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/taxesdestinations/taxesdestinations_config.php Diff ] File ]
mod - /w/in-commerce/branches/5.1.x/units/zones/zones_config.php Diff ] File ]
Modules :: In-Bulletin: 5.1.x r13155
Timestamp: 2010-02-23 14:10:29
Author: alex
Details ] Diff ]
Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
mod - /modules/in-bulletin/branches/5.1.x/units/censorship/censorship_config.php Diff ] File ]
mod - /modules/in-bulletin/branches/5.1.x/units/emoticons/emoticons_config.php Diff ] File ]
mod - /modules/in-bulletin/branches/5.1.x/units/poll_answers/poll_answers_config.php Diff ] File ]
mod - /modules/in-bulletin/branches/5.1.x/units/poll_comments/poll_comments_config.php Diff ] File ]
mod - /modules/in-bulletin/branches/5.1.x/units/polls/polls_config.php Diff ] File ]
mod - /modules/in-bulletin/branches/5.1.x/units/posts/posts_config.php Diff ] File ]
mod - /modules/in-bulletin/branches/5.1.x/units/private_message_body/private_message_body_config.php Diff ] File ]
mod - /modules/in-bulletin/branches/5.1.x/units/private_messages/private_messages_config.php Diff ] File ]
mod - /modules/in-bulletin/branches/5.1.x/units/topics/topics_config.php Diff ] File ]
Modules :: Custom: 1.1.x r13153
Timestamp: 2010-02-23 14:09:10
Author: alex
Details ] Diff ]
Bug 0000579: Ability to use PerPage, SortBy and Page params from URL Query
mod - /modules/custom/branches/1.1.x/units/widgets/widgets_config.php Diff ] File ]

- Issue History
Date Modified Username Field Change
2011-04-19 22:20 Dmitry Relationship added parent of 0001042
2010-10-31 05:58 alex Relationship added parent of 0000913
2010-07-22 15:06 alex Note Added: 0002557
2010-07-22 15:06 alex Status resolved => closed
2010-07-10 05:16 alex Relationship added related to 0000795
2010-04-26 16:02 alex Note Added: 0001959
2010-04-26 16:02 alex Status reviewed and tested => resolved
2010-04-26 16:02 alex Fixed in Version => 5.1.0-B1
2010-04-26 16:02 alex Resolution open => fixed
2010-04-26 16:01 Dmitry Note Added: 0001958
2010-04-26 16:01 Dmitry Assigned To Dmitry => alex
2010-04-26 16:01 Dmitry Status needs testing => reviewed and tested
2010-04-26 15:59 alex Assigned To alex => Dmitry
2010-04-26 15:59 alex Status needs work => needs testing
2010-04-26 15:59 alex Changeset attached 5.1.x r13405
2010-04-26 15:57 alex Changeset attached 1.1.x r13404
2010-04-25 19:15 Dmitry Change Log Message => Better handling for PerPage, SortBy and Page URL parameters
2010-04-25 19:13 Dmitry Note Edited: 0001940 View Revisions
2010-04-25 19:12 Dmitry Note Added: 0001940
2010-04-25 19:12 Dmitry Assigned To !COMMUNITY => alex
2010-04-25 19:12 Dmitry Status needs testing => needs work
2010-04-25 19:03 Dmitry File Added: per_page_in_unit_configs_themes-Advanced-Dmitry-20100425.patch
2010-04-25 18:20 Dmitry Note Edited: 0001482 View Revisions
2010-02-27 04:44 alex Developer => alex
2010-02-24 05:14 alex Note Edited: 0001482 View Revisions
2010-02-24 05:12 alex Note Added: 0001482
2010-02-24 05:12 alex Assigned To alex => !COMMUNITY
2010-02-24 05:12 alex Status needs work => needs testing
2010-02-24 05:02 alex Changeset attached 1.1.x r13160
2010-02-24 05:02 alex File Added: per_page_in_unit_configs_themes.patch
2010-02-24 04:45 alex Changeset attached 5.1.x r13159
2010-02-24 04:43 alex File Added: per_page_in_unit_configs_core.patch
2010-02-23 14:12 alex Changeset attached 5.1.x r13158
2010-02-23 14:12 alex Changeset attached 5.1.x r13157
2010-02-23 14:11 alex Changeset attached 5.1.x r13156
2010-02-23 14:10 alex Changeset attached 5.1.x r13155
2010-02-23 14:09 alex Changeset attached 5.1.x r13154
2010-02-23 14:09 alex Changeset attached 1.1.x r13153
2010-02-23 14:03 alex File Added: per_page_in_unit_configs.patch
2010-02-15 16:22 Dmitry Relationship added related to 0000107
2010-02-15 16:22 Dmitry New Issue
2010-02-15 16:22 Dmitry Status active => needs work
2010-02-15 16:22 Dmitry Assigned To => alex
2010-02-15 16:22 Dmitry Reference => http://groups.google.com/group/in-portal-dev/browse_thread/thread/c722936e20596265



Web Development by Intechnic
In-Portal Open Source CMS
In-Portal Open Source CMS
Copyright © 2000 - 2009 MantisBT Group

Powered by Mantis Bugtracker