From: Don S. <ri...@us...> - 2004-10-20 01:34:10
|
Update of /cvsroot/phpwsbb/phpwsbb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28415 Modified Files: index.php Log Message: Fix from jydallstar for Bug #1049586 Index: index.php =================================================================== RCS file: /cvsroot/phpwsbb/phpwsbb/index.php,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** index.php 15 Sep 2004 20:53:35 -0000 1.13 --- index.php 20 Oct 2004 01:33:53 -0000 1.14 *************** *** 56,60 **** /* If an image was selected from the library... */ if ($_REQUEST['IMGLib_op']=='select_image') { ! $_POST['IMGLib_selected_image'] = pos($_POST['IMGLib_selected_image']); $_SESSION['PHPWSBB_Manager']->_getUserSettings(); return; --- 56,61 ---- /* If an image was selected from the library... */ if ($_REQUEST['IMGLib_op']=='select_image') { ! if (isset($_POST['IMGLib_selected_image'])) ! $_POST['IMGLib_selected_image'] = pos($_POST['IMGLib_selected_image']); $_SESSION['PHPWSBB_Manager']->_getUserSettings(); return; *************** *** 91,93 **** } } ! ?> \ No newline at end of file --- 92,94 ---- } } ! ?> |