Commit graph

689 commits

Author SHA1 Message Date
Heiko August
1a611241c6
Merge pull request #300 from auge8472/quotes
enclose language strings in single quotes …

Commited via merge because of the load of changes in 12 different files. This fixes #298
2017-12-15 10:35:29 +01:00
Micha
1589ce7fd7
correct label (#304)
- change not defined $lang['error_input_too_long'] to
$lang['error_username_too_long']
2017-12-13 09:53:30 +01:00
Heiko August
6afc638225
Merge branch 'master' into quotes 2017-12-12 23:33:30 +01:00
Heiko August
df8d7f64b6 Fix: removed obsolete string (key: error_bookmark_tags_too_long) 2017-12-12 23:18:45 +01:00
Heiko August
ce23d97b0f Fix: new key-value-pair for limiting the number of bookmark tags 2017-12-12 23:11:08 +01:00
Micha
cd401caf42
Change TAG handling (#297)
* Remove phrase in lang files

- Remove TAG-phrase 'error_bookmark_tags_too_long'
- was added by https://github.com/ilosuna/mylittleforum/pull/287

* Add tables

- tags_table for tag values
- bookmark_tags_table for connection between tags and bookmarks

* Change install/update script

- Add new tables
- Suggestion for transfering old tags from postings to new tag table

* Add tags to bookmark

- adapt SQLs for new TAG-table

* SQL korrigiert

- Klammerausdruck korrigiert

* LEFT-Join

- Correcting SQL JOIN vs. LEFT JOIN
- Replace function call

* Replace Functions

- add/replace functions for TAG handling

* TAGS for postings

- Add Tags for postings

* Add new table

- add binding table for tags and postings

* - Change TAG handling

- search function
- posting
- thread view
- update script
- install script

* Limiting number of Tags

- set tag limit to 10 for bookmarks
- add error message

* Remove BTREE

- reomve USING BTREE clausel as suggested by @auge8472

* Remove BTREE

- remove USING BTREE as suggested by @auge8472
- add new table entry_tags_table

* Remove variable

- remove variable $tagStr

* Remove first tab

- clean up file

* Add InnoDB

- Add ENGINE=InnoDB to new tables

* Add table names

- add table names to install script

* add updated files

- add updated files of issue #297

* add AUTO_INCREMENT

- add AUTO_INCREMENT to 'tags_table' definition

* Correcting table name / check for prior errors

- correct tabel name of entry_tags_table
- check empty property of error-array
- add error message, if b_settings.php is unwriteable

* Store posting tags

- add new sql to store the posting tags in entry_tags table
2017-12-12 22:53:37 +01:00
Heiko August
87e486ad0c Change: set value strings into single quotes (except multi line strings) 2017-12-12 22:51:42 +01:00
Heiko August
bebc2db55e Change: set value strings into single quotes (except multi line strings) 2017-12-12 22:15:06 +01:00
Heiko August
920d9c5c25 Change: set value strings into single quotes (except multi line strings) 2017-12-12 21:40:23 +01:00
Heiko August
6cd6f75b3c Change: set value strings into single quotes (except multi line strings) 2017-12-12 21:01:51 +01:00
Heiko August
b14bc3f179 Fix: enclosing means a quote at the begin AND at the end of the string. 2017-12-11 22:52:03 +01:00
Heiko August
e53cbc95e9 Fix: forgot to add the key-value-pair for word delimiter 2017-12-11 22:51:09 +01:00
Heiko August
2ad8f86ba9 Change: set value strings into single quotes (except multi line strings) 2017-12-11 22:47:22 +01:00
Heiko August
8aa987bb51 Change: set value strings into single quotes (except multi line strings) 2017-12-11 22:09:16 +01:00
Heiko August
31c02359fe Fix: added forgotten word delimiter in croatian language file 2017-12-08 16:18:19 +01:00
Heiko August
1dd2c6d16f Change: dsemi ready translation of e-mail-content from english to french language 2017-12-08 16:17:39 +01:00
Heiko August
d35b024836 Change: set value strings into single quotes (except multi line strings) 2017-12-08 16:17:20 +01:00
Heiko August
212114f6fd Change: set value strings into single quotes (except multi line strings) 2017-12-05 22:28:14 +01:00
Heiko August
31cc55ccd3 Fix: replace "it's" with "it is" because of the conflict with enclosing quotes 2017-12-03 22:53:00 +01:00
Heiko August
a98404c762 Change: set value strings into single quotes (except multi line strings) 2017-12-03 22:38:22 +01:00
Heiko August
c1e8610da7 Change: set value strings into single quotes (except multi line strings) 2017-12-03 21:59:22 +01:00
Heiko August
a57998528a Fix: forgotten opening quotes 2017-12-03 20:03:47 +01:00
Heiko August
e2e08c531d Change: set value strings into single quotes (except multi line strings) 2017-12-03 20:02:25 +01:00
Heiko August
2a9acd567d Change: set value strings into single quotes (except multi line strings) 2017-12-03 19:25:53 +01:00
Heiko August
cb9c536c92
Fix: wrong values in the arrays of allowed values (#296)
Allowed are the values `0` and `1` and not `1` and `2`.
2017-11-28 22:15:06 +01:00
Heiko August
665064228f
Change: fix values for URL-parameter fold_threads (#295)
0 = unfolded threads (default)
1 = folded threads

fixes #293
2017-11-28 22:06:54 +01:00
Heiko August
151d6f0ed2
Change: fix values for URL-parameter toggle_thread_display (#294)
0 = nested view (threaded view, default)
1 = linear view (table view)

fixes #292
2017-11-28 21:50:00 +01:00
Heiko August
2e9f31de49
Change: introduce new URL-parameter to select view of the threads list view (#291)
Change: change the behaviour of `toggle_view` from 'true' to '0' or '1', fixes #283
2017-11-27 09:49:43 +01:00
Heiko August
713bae4f8c
Refactoring of index.inc.php … (#290)
* Change: don't set a value for an integer field into quote signs
* Cleanup: reformatting of the file index.inc.php
2017-11-22 22:37:55 +01:00
Micha
c5ab0b7314
Bookmarktags (#287)
* Tags for Bookmarks

- add tags for user-defined bookmarks
- https://github.com/ilosuna/mylittleforum/issues/254

* Update/Install instructions

- update install and update scripts

* Add GH-IDs

- add GitHub ids

* Remove isset

- remove isset() because it is checked above
2017-11-20 16:03:39 +01:00
Micha
8b493fcdca
Redirect after LogIn (#286)
* Redirect after LogIn

- Redirect user to last visited page after login
- https://github.com/ilosuna/mylittleforum/issues/282
- Refactoring index.php
- https://github.com/ilosuna/mylittleforum/pull/275
2017-11-12 11:16:35 +01:00
Micha
e3c0df31af
Remove entries_read column (#285)
- Removing column entries_read from userdata-table
- https://github.com/ilosuna/mylittleforum/issues/284
2017-11-11 12:48:01 +01:00
Heiko August
16dc507884
Merge pull request #281 from auge8472/v2.4.6
changes for update to version 2.4.6

closes #280
2017-11-05 16:18:52 +01:00
Heiko August
574dc6e4d8 Change: new version number 2.4.6 in index.php and config/VERSION 2017-11-05 16:15:22 +01:00
Heiko August
5fbc0704bc Change: add the list of changed files and directories for version 2.4.6 2017-11-05 16:14:44 +01:00
Heiko August
9f195cbbb4 Change: add version 2.4.5 to the list of updateable versions 2017-11-05 16:14:12 +01:00
Heiko August
e7f9128d08 Change: add the list of changes for version 2.4.6 2017-11-05 16:13:30 +01:00
Heiko August
b282f900d7
Fix: sort users by their names in natural order (case insensitive) (#279)
fixes #274
2017-11-05 15:26:42 +01:00
Heiko August
75d5568d1f
Fix: removed doubled line with key "smilies_disabled" (#278) 2017-11-05 15:03:47 +01:00
Heiko August
4317ca75e0
Fix: corrected database query, was broken mix of SELECT and UPDATE (#277)
fixes #272
2017-11-05 14:56:38 +01:00
Heiko August
3dfa97de21
Fix: broken if-statement, wrong nesting of parenthesis (#276)
fixes #273
2017-11-05 14:12:22 +01:00
Heiko August
31a4a14763
Merge pull request #275 from auge8472/rewrites
Refactoring of the PHP-includes, merge instead squash because of the amount of changed files (one commit per code file).
2017-11-05 14:02:35 +01:00
Heiko August
eb88e30528 Cleanup: reformatting of posting.inc.php 2017-11-05 13:28:17 +01:00
Heiko August
dc3966d902 Cleanup: reformatting of register.inc.php 2017-11-04 22:42:25 +01:00
Heiko August
6bdfc1c2b8 Cleanup: reformatting of search.inc.php 2017-11-04 22:42:04 +01:00
Heiko August
dd3e10e8ae Cleanup: reformatting of rss.inc.php 2017-11-04 22:41:40 +01:00
Heiko August
c86fb16991 CLeanup: reformatting of main.inc.php 2017-11-04 21:37:20 +01:00
Heiko August
c96138f1db Cleanup: reformatting of upload_image.inc.php 2017-11-04 20:57:45 +01:00
Heiko August
338b4a5d6d Cleanup: reformatting of page.inc.php 2017-11-04 20:57:21 +01:00
Heiko August
0370b7db6f Cleanup: reformatting of admin.inc.php 2017-11-02 16:37:25 +01:00