summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelprofileclassifieds.cpp
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2023-12-06 14:10:30 +0200
committerMnikolenko Productengine <mnikolenko@productengine.com>2023-12-06 14:10:30 +0200
commitbf8fb4ef0d5345f65cfc2e8a750eea6a4ef3d05c (patch)
tree34c9fe731c4a2157350a9c25cdfebdeb7392d3e5 /indra/newview/llpanelprofileclassifieds.cpp
parent683bf84bb38adc88d4a4b7fedaed89b41fcac45e (diff)
SL-20694 FIXED Unable to publish classified if first entered insufficient L$ amount
Diffstat (limited to 'indra/newview/llpanelprofileclassifieds.cpp')
-rw-r--r--indra/newview/llpanelprofileclassifieds.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llpanelprofileclassifieds.cpp b/indra/newview/llpanelprofileclassifieds.cpp
index dec6cfd83b..f9529e9d23 100644
--- a/indra/newview/llpanelprofileclassifieds.cpp
+++ b/indra/newview/llpanelprofileclassifieds.cpp
@@ -954,7 +954,7 @@ void LLPanelProfileClassified::onSaveClick()
}
if(isNew() || isNewWithErrors())
{
- if(gStatusBar->getBalance() < getPriceForListing())
+ if(gStatusBar->getBalance() < MINIMUM_PRICE_FOR_LISTING)
{
LLNotificationsUtil::add("ClassifiedInsufficientFunds");
return;