Cette section vous permet de consulter les contributions (messages, sujets et fichiers joints) d'un utilisateur. Vous ne pourrez voir que les contributions des zones auxquelles vous avez accès.
1
Features / Re: New revs
« le 30 Août 2023 à 17:42 »So, apparently there were some changes internally at github and they deleted the webhook for Wedge. I reinstalled it, and it didn't work. I had to rewrite some parts of the code to allow it to go through. I don't know if anyone's interested in getting the updated code? If no one is, there isn't much of a reason for me to commit the changes (for some reason, my local plugin repo was deleted.)
https://gist.github.com/live627/68345dfb22756a9d16dc81aa800780a1
2
The Pub / Re: Wedge&PHP 7
« le 29 Août 2023 à 16:41 », I'm thinking about migrating to another forum solution but did not find any working export tool.
3
Bug reports / Re: Possible bug with custom fields
« le 10 Janvier 2020 à 23:58 »
Eh, the code is what I did to keep the logs quiet.
And I did not send anything to the repo. This was on AeMe on SMF, so I have no idea if the code is even valid for Wedge.
And I did not send anything to the repo. This was on AeMe on SMF, so I have no idea if the code is even valid for Wedge.
4
Bug reports / Possible bug with custom fields
« le 1er Février 2019 à 00:54 »- 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
// 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);
}5
Plugin Support / Re: Github plugin problem
« le 16 Novembre 2014 à 07:30 »
Moved to Plugin Support
6
Bug reports / Re: From Order... Chaos
« le 29 Juillet 2014 à 07:29 »
MySQL and PHP version? Any board moderators?
7
Development blog / Re: Alphababy!
« le 15 Juillet 2014 à 06:03 »
You must be proud and very happy of your little bundle of joy! Take care!
10
Plugins / Re: Calendar Plugin
« le 25 Mai 2014 à 02:19 »
No... see, the calendar button is misplaced now.
11
Plugins / PM Auto Respond
« le 14 Mai 2014 à 21:34 »
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
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
12
The Pub / Re: Hosting
« le 12 Mai 2014 à 03:12 »
http://www.geekstorage.com/web-hosting/comparison.html -- I have the Pro package. I think the server's in Chicago, Illinois. Hosts http://livemods.net/index.php
13
Archived fixes / Credits page
« le 11 Mai 2014 à 02:03 »
It has a serious drinking problem.
See attachment..
See attachment..
14
Archived fixes / Menu bug
« le 11 Mai 2014 à 01:58 »
I only see [Home] and [Profile] here on this site.
15
Bug reports / SMF bug 4940: sending pm to user with quotes in name
« le 29 Avril 2014 à 10:24 »
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
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