Menu

#281 Find Individual ID bug fix

Normal Version
closed-fixed
5
2005-05-10
2005-05-07
tth111
No

Fixes error that arises when attempting to use the
FindID feature. Here is the error text (that goes away
after applying this patch):

Notice: Array to string conversion in

/usr/local/www/data-dist/fh/includes/functions_name.php
on line 730

Notice: Array to string conversion in

/usr/local/www/data-dist/fh/includes/functions_name.php
on line 738

System details:
PhpGedView 3.3.3
Last Sync with main branch: February 09, 2005 09:33:58 AM
=====================++++========================
PHP Version 5.0.3
System FreeBSD 4.10-RELEASE: i386

This patch is applied by copying
'patch_functions_name.php' to the ./includes/ directory
and typing the following from within that directory:

#> patch functions_name.php patch_functions_name.php

Discussion

  • tth111

    tth111 - 2005-05-07

    patch for functions_name.php to fix FindID array to string problem

     
  • tth111

    tth111 - 2005-05-07
    • summary: Find Individual ID bug fix --> FindID bug fix
     
  • tth111

    tth111 - 2005-05-07
    • summary: FindID bug fix --> FindID bug fix (3.3.3) in functions_name.php
     
  • Roland Dalmulder

    • summary: FindID bug fix (3.3.3) in functions_name.php --> Find Individual ID bug fix
     
  • Roland Dalmulder

    • assigned_to: nobody --> roland-d
     
  • Roland Dalmulder

    Logged In: YES
    user_id=1143947

    Not sure how to do this for the linux people but another
    patch is changing the functions_index.php (not
    functions_name.php) file:
    Line 528-529 look like:
    $query = str2upper($query);
    if (!is_array($query)) $query = array($query);
    should be replaced by:
    if (!is_array($query)) {
    $query = str2upper($query);
    $query = array($query);
    }

    Regards,

    RolandD

     
  • John Finlay

    John Finlay - 2005-05-09

    Logged In: YES
    user_id=300048

    Applied to CVS for the next release.

    --John

     
  • John Finlay

    John Finlay - 2005-05-09
    • status: open --> open-fixed
     
  • John Finlay

    John Finlay - 2005-05-10

    Logged In: YES
    user_id=300048

    included in v3.3.3

     
  • John Finlay

    John Finlay - 2005-05-10
    • status: open-fixed --> closed-fixed
     

Log in to post a comment.