[yast-commit] r48015 - in /trunk/product-creator: VERSION package/yast2-product-creator.changes src/dialogs.ycp
Author: jsuchome Date: Tue Jun 3 15:57:54 2008 New Revision: 48015 URL: http://svn.opensuse.org/viewcvs/yast?rev=48015&view=rev Log: - check if map key exists before removing it (bnc#396666) - 2.16.19 Modified: trunk/product-creator/VERSION trunk/product-creator/package/yast2-product-creator.changes trunk/product-creator/src/dialogs.ycp Modified: trunk/product-creator/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/product-creator/VERSION?rev=48015&r1=48014&r2=48015&view=diff ============================================================================== --- trunk/product-creator/VERSION (original) +++ trunk/product-creator/VERSION Tue Jun 3 15:57:54 2008 @@ -1 +1 @@ -2.16.18 +2.16.19 Modified: trunk/product-creator/package/yast2-product-creator.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/product-creator/package/yast2-product-creator.changes?rev=48015&r1=48014&r2=48015&view=diff ============================================================================== --- trunk/product-creator/package/yast2-product-creator.changes (original) +++ trunk/product-creator/package/yast2-product-creator.changes Tue Jun 3 15:57:54 2008 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Tue Jun 3 15:49:54 CEST 2008 - jsuchome@suse.cz + +- check if map key exists before removing it (bnc#396666) +- 2.16.19 + +------------------------------------------------------------------- Thu May 22 15:30:47 CEST 2008 - jsuchome@suse.cz - added support for profiles (bnc#343212) Modified: trunk/product-creator/src/dialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/product-creator/src/dialogs.ycp?rev=48015&r1=48014&r2=48015&view=diff ============================================================================== --- trunk/product-creator/src/dialogs.ycp (original) +++ trunk/product-creator/src/dialogs.ycp Tue Jun 3 15:57:54 2008 @@ -639,7 +639,8 @@ y2milestone("Only one repository selected, skipping base repository selection"); // remove the option if it exists - ProductCreator::Config = remove(ProductCreator::Config, "base_repo"); + if (haskey (ProductCreator::Config, "base_repo")) + ProductCreator::Config = remove(ProductCreator::Config, "base_repo"); return going_back ? `back : `next; } -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsuchome@svn.opensuse.org