41
black_beard
Re: News 1.67 Final released for XOOPS 2.5.5

hello,
if you have ???, this may arise from the article that is encoded in iso MySQL database. Verifies the collation of fields in the table prefix _topics and prefix_stories



42
black_beard
Re: News 1.67 Final released for XOOPS 2.5.5

A bug in the creation of PDF document (makepdf.php) when using UTF-8 charset. Appearance of odd characters in the PDF.

To fix this bug

Replace line 120 of file : makepdf.php
$pdf->WriteHTML($pdf_config['slogan'], $pdf_config['scale']);


by

if ( _CHARSET == 'UTF-8') { 
    
$pdf->WriteHTML(utf8_decode($pdf_config['slogan']), $pdf_config['scale']); 
} else {
    
$pdf->WriteHTML($pdf_config['slogan'], $pdf_config['scale']);
}


and replace line 140 of file : makepdf.php
$out=NEWS_PDF_AUTHOR.': ';


by

if ( _CHARSET == 'UTF-8') { 
    
$out=utf8_decode(NEWS_PDF_AUTHOR).': '
} else {
    
$out=NEWS_PDF_AUTHOR.': '
}



43
black_beard
Re: Newbb 4.3

Hello,
I corrected the few errors that CESAG reported on newbb4.3.

Here is the corrected version, it is currently on the SVN frxoops.org

Files modified:

Quote:

/ class / user.php
viewtopic.php
/ templates / newbb_viewtopic.php
topicmanager.php



44
black_beard
Re: Profile module : make a field visible but not editable ?

Hello,

Quote:

I'm looking to create a field visible by each member, but not editable... I tried many permissions, but it's look like i can just make a field visble or hide it...

In fact, i need to communicate a personnal information for each of my members so i would like to deliver it to them in their profile... but or they see it and they can edit it (i don't want them to edit), or i hide it...

Is there an option that i didn't know ?


I just fix this bug, look here

For the second point, I look and I hold you informed



45
black_beard
Re: XOOPS 2.5.5 RC Testing

Quote:

There is a bug with added fields that do not save in the database, in Xoops 2.5.5 Profile module 1.63.

black_beard (montuy33753) is working on it.


This bug is fixed

The program does not create new fields in the table profile_profile

In the file /modules/profile/class/field.php , you must make a modifcation to the line 513

if ((!in_array($obj->getVar('field_name'), $this->getUserVars())) && (!isset($_REQUEST['field_required']))) {


by

if ((!in_array($obj->getVar('field_name'), $this->getUserVars())) && (isset($_REQUEST['field_required']))) {



46
black_beard
Re: MyAlbum-p 3.06 and Xoops 2.5.5

The list of fixes is too long, I put a new download zip file: here

Thank you for reporting bugs remaining



47
black_beard
Re: MyAlbum-p 3.06 and Xoops 2.5.5

I fixed half the bug, I will continue tomorrow or tonight.
I will put patches on this post tomorrow night



48
black_beard
Re: xForms 1.21 Beta ready for Testing

OK I found the bug, the problem come from xoops_version.php file, there were two configuration options with the same key.

Suffit de changer
$modversion['config'][9]['name'] = 'intro';
$modversion['config'][9]['title'] = '_MI_xforms_INTRO';
$modversion['config'][9]['description'] = '';
$modversion['config'][9]['formtype'] = 'textarea';
$modversion['config'][9]['valuetype'] = 'text';
$modversion['config'][9]['default'] = _MI_xforms_INTRO_DEFAULT;


by

$modversion['config'][13]['name'] = 'intro';
$modversion['config'][13]['title'] = '_MI_xforms_INTRO';
$modversion['config'][13]['description'] = '';
$modversion['config'][13]['formtype'] = 'textarea';
$modversion['config'][13]['valuetype'] = 'text';
$modversion['config'][13]['default'] = _MI_xforms_INTRO_DEFAULT;


And to an update module at the module manager



49
black_beard
Re: xForms 1.21 Beta ready for Testing

Hi cesag,
Here are the fixes for the errors reported

For first error :
Replace line 11 in ./modules/xforms/admin/ele_text.php
$default = new XoopsFormText(_AM_ELE_DEFAULT'ele_value[2]'50255,  $myts->htmlspecialchars($myts->stripSlashesGPC($value[2])));


by

$default = new XoopsFormText(_AM_ELE_DEFAULT'ele_value[2]'50255, isset($value[2]) ? $myts->htmlspecialchars($myts->stripSlashesGPC($value[2])) : '');


For second error :
Replace line 10 in ./modules/xforms/admin/ele_uploadimg.php
$saveas $value[3] != 1;


by

if (isset($value[3]) && $value[3] == 1) {
    
$saveas $value[3];
} else {
    
$saveas 0;
}


For the third error

Replace line 8 in ./modules/xforms/admin/ele_upload.php
$saveas $value[3] != 1;


by

if (isset($value[3]) && $value[3] == 1) {
    
$saveas $value[3];
} else {
    
$saveas 0;
}


For the fourth error, I have no error at line 39. The offset "intro" file comes xoops_version.php, surely a mistake to install the module and then the bug has already been corrected by another person.




TopTop
« 1 2 3 4 (5)



Login

Who's Online

268 user(s) are online (166 user(s) are browsing Support Forums)


Members: 0


Guests: 268


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits