Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - live627
1
Bug reports / Possible bug with custom fields
« on February 1st, 2019, 12:54 AM »
  • Create a custom field in the gallery
  • Make it a checklist
  • Make it required
  • Make it searchable
  • Edit an item, don't fill that field
  • Observe errors when saving
Code: [Select]
// Add them to the form
  foreach ($fields as $field)
  {
- if ($field['type'] == 'checkbox')
+ if ($field['type'] == 'checkbox' && empty($field['searchable']))
  $field['value'] = explode(', ', $field['value']);
 
  // Options...
  $value = isset($_POST['custom_field'][$field['id']]) && (is_array($_POST['custom_field'][$field['id']]) || trim($_POST['custom_field'][$field['id']]) != '') ? $_POST['custom_field'][$field['id']] : '';
 
+ // JTR: preparsecode() corrupts the array by converting it to a string.
+ if (isset($_POST['custom_field'][$field['id']]) && !is_array($_POST['custom_field'][$field['id']]))
- preparsecode($value);
+ preparsecode($value);
 
  // Do the value checks
  if ($field['type'] == 'checkbox')
  {
- foreach ($value as $val)
- if (!in_array($val, $field['options']))
- fatal_error(sprintf($txt['aeva_cf_invalid'], $field['name']));
-
  // Nothing set?
  if (empty($value) && $field['required'])
  fatal_error(sprintf($txt['aeva_cf_empty'], $field['name']));
  elseif (empty($value))
  continue;
 
+ foreach ($value as $val)
+ if (!in_array($val, $field['options']))
+ fatal_error(sprintf($txt['aeva_cf_invalid'], $field['name']));
+
  // Set the proper value
  $value = implode(', ', $value);
  }
2
Plugins / PM Auto Respond
« on May 14th, 2014, 09:34 PM »
This plugin functions similar to a vacation responder in that it sends a PM to a user who sent a PM. The message and subject are customisable, so the auto PM can be totally unique.

Depending on certain criteria found in the incoming message, you can create different variations for auto response. This feature is very similar in nature to the PM Rules in SMF 2.

More info + purchase: http://wedge.livemods.net/index.php?action=media;sa=item;in=34
3
Archived fixes / Credits page
« on May 11th, 2014, 02:03 AM »
It has a serious drinking problem.

See attachment..
4
Archived fixes / Menu bug
« on May 11th, 2014, 01:58 AM »
I only see [Home] and [Profile] here on this site.
5
Ref: http://dev.simplemachines.org/mantis/view.php?id=4940

How to reproduce;
1) Change your display name to user0 "first" blablabla
2a) Try to send pm to user0 "first" blablabla
2b) Do not use the auto suggest
3) Click send
6
Documentation / Disable administration security
« on February 2nd, 2014, 02:15 AM »
This disables the additional password check for the administration section. Not recommended!

Enter this query into phpMyAdmin:

Code: [Select]
INSERT INTO `wedge_settings` (`variable`, `value`) VALUES ('securityDisable', '1');
7
Features / AJAX Quick Reply
« on September 28th, 2013, 12:38 AM »
Plugin discussion will commence in 3... 2...
8
The Pub / Random question
« on September 23rd, 2013, 11:28 AM »
Is there a reason the hr separator is not below the very last post in a thread other than maybe a SMF leftover?
9
Archived fixes / Random patch
« on September 23rd, 2013, 06:29 AM »
Let's remove duplicate code!

Code: [Select]
/Sources/Post.php (working copy)
@@ -243,8 +243,6 @@
  );
  }
 
- $context['post_error'] = array('messages' => array());
-
  // See if any new replies have come along.
  if (empty($_REQUEST['msg']) && !empty($topic))
  {
10
Archived fixes / Forum history bug
« on August 23rd, 2013, 04:55 PM »
 This is expanded with JS on this site.
11
Bug reports / req_win bug
« on August 23rd, 2013, 04:29 PM »
Suppose ask() is abused slightly to show a small form for input from the user. All <input> elements inside the popup get a click event and are populated with text.

Code: [Select]
/Themes/default/scripts/script.js (working copy)
@@ -189,7 +189,7 @@
  .html('<section class="nodrag confirm">' + string + '</section><footer><input type="button" class="submit'
  + (modal_type == 1 ? ' floatleft" /><input type="button" class="delete floatright" />' : '" />') + '</footer>')
  .each(animate_popup)
- .find('input')
+ .find('footer input')
  .val(we_cancel)
  .click(function () {
  close_window();
12
Archived fixes / DB column size cannnot be comma seperated
« on August 23rd, 2013, 04:13 PM »
I need to specify my own size fur floats (18,15) and cannot rely on the defaults (10,2).

Code: [Select]
/Sources/Class-DBPackages.php (working copy)
@@ -88,8 +88,16 @@
  $default = '';
 
  // Sort out the size... and stuff...
- $column['size'] = isset($column['size']) && is_numeric($column['size']) ? $column['size'] : null;
+ if (isset($column['size']))
+ {
+ $s = array_filter(explode(',', $column['size']), 'is_numeric');
 
+ if (!empty($s))
+ $column['size'] = implode(',', $s);
+ else
+ $column['size'] = null;
+ }
+
  // Allow unsigned integers
  $unsigned = in_array($column['type'], array('int', 'tinyint', 'smallint', 'mediumint', 'bigint')) && !empty($column['unsigned']) ? 'unsigned ' : '';
 
@@ -141,8 +149,16 @@
  if (!isset($current_columns[$column['name']]))
  {
  // The column is new, add it to the list of columns to be added
- $column['size'] = isset($column['size']) && is_numeric($column['size']) ? $column['size'] : null;
+ if (isset($column['size']))
+ {
+ $s = array_filter(explode(',', $column['size']), 'is_numeric');
 
+ if (!empty($s))
+ $column['size'] = implode(',', $s);
+ else
+ $column['size'] = null;
+ }
+
  // Allow unsigned integers
  $unsigned = in_array($column['type'], $numeric_types) && !empty($column['unsigned']) ? 'unsigned ' : '';
 
@@ -160,8 +176,16 @@
  else
  {
  // The column already exists, does it need changing?
- $column['size'] = isset($column['size']) && is_numeric($column['size']) ? $column['size'] : null;
+ if (isset($column['size']))
+ {
+ $s = array_filter(explode(',', $column['size']), 'is_numeric');
 
+ if (!empty($s))
+ $column['size'] = implode(',', $s);
+ else
+ $column['size'] = null;
+ }
+
  // Allow unsigned integers
  $unsigned = in_array($column['type'], $numeric_types) && !empty($column['unsigned']) ? 'unsigned ' : '';

The above code does not break anything as per my tests.

Before, only numeric type sizes were allowed. Now, the same is allowed within any number of commas.
13
Archived fixes / Ripe Database
« on August 1st, 2013, 06:17 AM »
RIPE has updated their site, breaking the IP search.

https://github.com/SimpleMachines/SMF2.1/pull/550/files
14
Archived fixes / The /e modifier is deprecated
« on July 30th, 2013, 05:41 AM »
I now get a bajillion of these since I upgraded to PHP 5.5.


Posted: July 30th, 2013, 05:39 AM

Code: [Select]
Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-Cache.php on line 677

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Class-CSS.php on line 862

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-BBC.php on line 187

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Subs-Cache.php on line 677

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Class-System.php on line 702

Notice: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in I:\www\wedge\trunk\Sources\Class-CSS.php on line 862
15
Archived fixes / Right to madness
« on July 26th, 2013, 06:31 AM »
RTL layout.. Yay....  or not.

See attached.