Skip to content

Instantly share code, notes, and snippets.

@kirillrogovoy
Last active August 4, 2017 13:46
Show Gist options
  • Save kirillrogovoy/aba939d9a681aadd36ed6a7378892daa to your computer and use it in GitHub Desktop.
Save kirillrogovoy/aba939d9a681aadd36ed6a7378892daa to your computer and use it in GitHub Desktop.
diff --git a/app/Ag/Ctrl/Json/SubscriptionPoll.php b/app/Ag/Ctrl/Json/SubscriptionPoll.php
index 39349190dc..111aa2fb05 100644
--- a/app/Ag/Ctrl/Json/SubscriptionPoll.php
+++ b/app/Ag/Ctrl/Json/SubscriptionPoll.php
@@ -20,6 +20,8 @@ class Ag_Ctrl_Json_SubscriptionPoll extends XPHP_Ctrl
$vendorStatuses = BrSoftUserVendorStatus::findByBrSoftUser($brSoftUsers);
foreach ($brSoftUsers as $brSoftUser) {
$status = $vendorStatuses[$brSoftUser->id];
+ $status->user_error = 'Bad things happened';
+ $status->admin_error = 'ADMIN ERROR';p
if ($status->stage) $status->stage = L($status->stage);
if ($status->user_error) $status->user_error = L($status->user_error);
$this->json['vendor_statuses'][$brSoftUser->subscription_id] = $status;
diff --git a/app/Static/htdocs/css/new.css b/app/Static/htdocs/css/new.css
index e9dee2f215..5337e65dd9 100644
--- a/app/Static/htdocs/css/new.css
+++ b/app/Static/htdocs/css/new.css
@@ -776,6 +776,10 @@ div.editable-edit {
}
}
+.support_panel {
+ width: 320px;
+}
+
div.comment-edit {
textarea {
width: 100%;
diff --git a/app/Static/htdocs/css/style.css b/app/Static/htdocs/css/style.css
index a2998c9b06..013e3cc616 100644
--- a/app/Static/htdocs/css/style.css
+++ b/app/Static/htdocs/css/style.css
@@ -47,7 +47,7 @@ select {
}
#rs_body {
- width: @s_width;
+ width: 400px;
text-align: left;
margin: 0 auto 20px auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment