Forum Activity for @dredaelli

d.redaelli
@dredaelli
08/28/14 07:43:16AM
9 posts

previous version of jamroom


Using Jamroom

I have a website with jamroom 5.0.2 but the previous developer has edited the source code and now i can't do a clean update.
I need jamroom 5.0.2 the get the differences with my "dirty" version.
d.redaelli
@dredaelli
08/28/14 01:38:58AM
9 posts

previous version of jamroom


Using Jamroom

It's possible to have a link to download Jamroom 5.0.2?
Thanks
updated by @dredaelli: 12/29/14 09:14:37AM
d.redaelli
@dredaelli
06/17/14 03:03:16AM
9 posts

jrCore_db_search_items and return_count


Suggestions

michael:
so dont set the limit to 10.

Set the paginate to 10 and only show the first page.

how can i don't set the limit to 10? limit accept only values > 0!

I don't want show the first page, i want only the number of records that the JrCore_db_search_items find and with return_count param this doesn't works fine!
d.redaelli
@dredaelli
06/17/14 02:40:47AM
9 posts

jrCore_db_search_items and return_count


Suggestions

if i use jrCore_db_search_items function with return_count param to true and my records is over 10 items, the result is always 10 because it always append "LIMIT 10". If i want the number of records i need to set limit param to 999999.
It's a workaround that i don't like!
updated by @dredaelli: 07/21/14 01:05:52AM
d.redaelli
@dredaelli
06/06/14 09:15:19AM
9 posts

update jrCore_notice_page


Suggestions

there is also the problem in many other modules:
jrAudio
jrPage
...
d.redaelli
@dredaelli
06/03/14 06:55:18AM
9 posts

update jrCore_notice_page


Suggestions

for example

function view_jrBlog_update_save($_post, &$_user, &$_conf)
...........
// Make sure we get a good _item_id
if (!isset($_post['id']) || !jrCore_checktype($_post['id'], 'number_nz')) {
jrCore_notice_page('error', 14);
jrCore_form_result('referrer');
}
...........





if (!isset($_post['id']) || !jrCore_checktype($_post['id'], 'number_nz'))
the message error not appear without the fix
d.redaelli
@dredaelli
06/03/14 05:02:00AM
9 posts

update jrCore_notice_page


Suggestions

I have updated jrCore_notice_page function because when jrCore_is_ajax_request() the notices were not shown

if (jrCore_is_ajax_request()) {
$_er['notices'][] = array('type' => $notice_type, 'text' => $notice_text);
jrCore_json_response($_er);
exit;
}






updated by @dredaelli: 07/23/14 12:31:42AM
d.redaelli
@dredaelli
04/16/14 07:40:21AM
9 posts

require Birthday when sign up


Design and Skin Customization

Hi!
How to add birthday field in signup form? It's possible with form designer?
Thanks!
updated by @dredaelli: 06/03/14 06:15:30PM