Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logout #2606

Closed
wants to merge 82 commits into from
Closed

Logout #2606

wants to merge 82 commits into from

Commits on Feb 11, 2016

  1. Added link to MIT licence

    nitriques committed Feb 11, 2016
    Configuration menu
    Copy the full SHA
    53bb566 View commit details
    Browse the repository at this point in the history
  2. remove require_once call

    nitriques committed Feb 11, 2016
    Configuration menu
    Copy the full SHA
    943a454 View commit details
    Browse the repository at this point in the history
  3. added missing doc

    nitriques committed Feb 11, 2016
    Configuration menu
    Copy the full SHA
    b1e150e View commit details
    Browse the repository at this point in the history
  4. removed include_once calls

    They are not needed anymore since we use a auto loader
    nitriques committed Feb 11, 2016
    Configuration menu
    Copy the full SHA
    4ce189c View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2016

  1. Updated grunt deps

    nitriques committed Feb 18, 2016
    Configuration menu
    Copy the full SHA
    143ae74 View commit details
    Browse the repository at this point in the history
  2. Added a grunt task to run phpcs

    This commit adds a grunt task (named `php`) that will run phpcs with the PSR-2 standard.
    
    Note that you have to install php_codesniffer which has been added as a require-dev lib.
    
    Doing `composer install` will mess up Symphony's auto loader, so please `git checkout vendor` after the composer call
    nitriques committed Feb 18, 2016
    8 Configuration menu
    Copy the full SHA
    22069f4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d68b132 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2016

  1. Added Default Value plugin

    This commit introduce a new jQuery plugin called Default Value, which
    gives a input a source element to value its value from, when a specified
    event occurs on this source element.
    
    This behaviour is switched to off when the users focuses on the input
    field and then blurs out, leaving a value in the input.
    
    This commit also hooks this behaviours on the Data Source name input and
    on the Event name input.
    
    Closes symphonycms#2511
    nitriques committed Mar 2, 2016
    Configuration menu
    Copy the full SHA
    0e27ff5 View commit details
    Browse the repository at this point in the history
  2. new assets build

    nitriques committed Mar 2, 2016
    Configuration menu
    Copy the full SHA
    15f8cef View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2016

  1. Fix usage of Session::unserialize()

    This function should be checking new value for emptiness, but it was checking
    the database value instead. Additionally, at this point, the database value
    would always be `NULL`. Changed to use the correct variable.
    siimsoni authored and nitriques committed Mar 3, 2016
    Configuration menu
    Copy the full SHA
    d2e292d View commit details
    Browse the repository at this point in the history
  2. Update Session class to PHP 7 specification

    When there is no data written to the database, return `true` instead of `false`.
    Logically, the operation is successful.
    
    See: http://php.net/manual/en/sessionhandlerinterface.write.php
    
    When no data has been read, the read method should return an emtpy string, but
    it was returning NULL instead.
    
    See: http://php.net/manual/en/sessionhandlerinterface.read.php
    siimsoni authored and nitriques committed Mar 3, 2016
    Configuration menu
    Copy the full SHA
    ec700e5 View commit details
    Browse the repository at this point in the history
  3. Added custom sort parameter

    This way, developer can change the sorting order, which is Symphony's order by default
    nitriques committed Mar 3, 2016
    Configuration menu
    Copy the full SHA
    5b2ae3c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    78e7439 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9f1147d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b35eba8 View commit details
    Browse the repository at this point in the history
  7. Made generateNonce() return value url safe

    This change is primarly to make sure we do not have to url encode the xsrf token.
    
    Also, the default value for the method is now 30 instead of 20. (the magic 20 number was undocumented). The magic number used in the for loop for the fallback is also replace by the length parameter value: the sorter the nonce, the more iteration we have to make to shuffle things more.
    
    Finally the method will now throw an Exception if the length is smaller than 1.
    
    Fixes symphonycms#2567
    nitriques committed Mar 3, 2016
    2 Configuration menu
    Copy the full SHA
    34a3b50 View commit details
    Browse the repository at this point in the history
  8. Add more random sources

    Added support for PHP 7 random_bytes() and the mcrypt package.
    
    Re symphonycms#2567
    nitriques committed Mar 3, 2016
    11 Configuration menu
    Copy the full SHA
    5a61bf5 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2016

  1. Refactored how the field gets it current values

    The two SQL statements where mostly the same so they got refactored out.
    
    Also, this will provide another extension point for extension developers that inherits from the file upload.
    nitriques committed Mar 13, 2016
    Configuration menu
    Copy the full SHA
    42524d4 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2016

  1. Prevent errors if EXTENSIONS is un readable

    This fixes a fatal error on the install page when the extension folder does not exists
    nitriques committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    825eb27 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2016

  1. Fix Namespace Cache Typo & remove useless query

    First of all there's a big 'error' on the namespace which never matched as there was a typo.
    
    Second if a hash exists; the namespace query is run for no reason as data is overwritten by the if statement underneath.
    jonmifsud committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    83a042a View commit details
    Browse the repository at this point in the history
  2. Merge pull request symphonycms#2582 from jonmifsud/patch-1

    Fix Namespace Cache Typo & remove useless query
    brendo committed Apr 5, 2016
    Configuration menu
    Copy the full SHA
    06e9f4d View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2016

  1. Configuration menu
    Copy the full SHA
    9363d50 View commit details
    Browse the repository at this point in the history
  2. Fix broken MySQL doc link

    Url seems to be case sensitive now.
    
    Closes symphonycms#2580
    nitriques committed Apr 12, 2016
    Configuration menu
    Copy the full SHA
    ec0a040 View commit details
    Browse the repository at this point in the history
  3. Set "Sections Index" as default area of default (first) author (symph…

    …onycms#2530)
    
    * Set "Sections Index" as default area of default (first) author
    
    Because not having a default area isn’t considered in the UI.
    
    * Set "/blueprints/sections/" as default area fallback for developers
    
    symphonycms#2529
    
    * Fix Whitespace
    twiro authored and nitriques committed Apr 12, 2016
    Configuration menu
    Copy the full SHA
    17d87a5 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2016

  1. Fix code formatting (symphonycms#2586)

    A very small formatting fix.
    michael-e authored and nitriques committed Apr 23, 2016
    Configuration menu
    Copy the full SHA
    de50fc3 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2016

  1. mt_srand function argument must be an integer

    PHP 7 cares.
    Peter Skirenko authored and nitriques committed Apr 25, 2016
    Configuration menu
    Copy the full SHA
    05b68ec View commit details
    Browse the repository at this point in the history
  2. Datetime field cannot have a default value of "0000-00-00"

    In MySQL 5.7 a datetime field cannot have a default value of "0000-00-00" for the date, the minimum value is "1000-01-01".
    Peter Skirenko authored and nitriques committed Apr 25, 2016
    Configuration menu
    Copy the full SHA
    db403c3 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2016

  1. Configuration menu
    Copy the full SHA
    f7fc180 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2016

  1. Deprecated $_SESSION copy into $_COOKIE

    This thing really complicates things and should have been removed
    earlier
    nitriques committed May 23, 2016
    Configuration menu
    Copy the full SHA
    6c73f63 View commit details
    Browse the repository at this point in the history
  2. Better php.ini overrides for insecure setups

    This change is to protect our users against a poorly setup server. PHP
    can allow pretty scary things security-wise, so it's best to make sure
    things that can only have one valid setting should be enforced.
    
    Thanks to @hyp3rlinx for this.
    nitriques committed May 23, 2016
    15 Configuration menu
    Copy the full SHA
    b329a14 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2016

  1. Allow install in folders with special chars

    This change makes it possible to have non-url safe characters in the
    base path
    nitriques committed May 24, 2016
    Configuration menu
    Copy the full SHA
    83069c6 View commit details
    Browse the repository at this point in the history
  2. Make sure the process is at the right place

    This is a precaution calls what makes sure the SAPI module used by the
    hosting company chdir's the user at the right place
    nitriques committed May 24, 2016
    Configuration menu
    Copy the full SHA
    5e67448 View commit details
    Browse the repository at this point in the history

Commits on May 26, 2016

  1. Use HTTP_HOST constant instead of reading $_SERVER

    This is what constant are for
    nitriques committed May 26, 2016
    Configuration menu
    Copy the full SHA
    a167139 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2016

  1. Make sure user can delete the author (symphonycms#2572)

    This commits reuse the code from the edit action in order to validate if
    the current user can delete the author.
    
    Even if the Delete button is not present on the page, a request can be
    crafted in order for an author to delete another.
    
    This change also validates that the password of the current author is
    checked before doing any un-undoable things.
    
    Rebase of 8b20b8f
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    f7a5406 View commit details
    Browse the repository at this point in the history
  2. Only request the needed schema in table view (symphonycms#2568)

    This changes uses the array returned by $section->fetchVisibleColumns() in order to create the element names array to pass to the entry manager. This yeilds a nice performance update when a section contains many (hundreads) of fields but only a few of them are needed for the publish table view.
    
    Rebase of 34bd49f
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    92f762b View commit details
    Browse the repository at this point in the history
  3. Added ticks around table in DELETE statement

    That's for uniformity only.
    
    Cherry picked version of 5476e2f
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    0854278 View commit details
    Browse the repository at this point in the history
  4. Add support for tag negation and filterable ops

    Rebased version of 05693e0
    
    Closes symphonycms#2520
    jonmifsud authored and nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    786d1cc View commit details
    Browse the repository at this point in the history
  5. Add delegate prior to checking a field's post data (symphonycms#2549)

    EntryPreCheckPostFieldData
    michael-e authored and nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    bbc88fa View commit details
    Browse the repository at this point in the history
  6. Add data-attributes to publish filtering interface (symphonycms#2577)

    * Publish Filtering : Increase flexibility of comparison modes 6e764d1
    
    The current markup of the „comparison mode“-selectboxes in the publish
    filtering interface doesn’t allow for multiple modes that don’t have a
    filter prefix (like „regexp:“, „greater than:“, etc.) as it uses the
    prefix as unique identifier (option value).
    
    The default comparison mode „is“ is expected as the only mode without a
    filter prefix. But filter modes like „between“ („$x to $y“) as included
    in Number Field (and possibly date fields too) don’t have a prefix
    either and therefore won’t work with the current code.
    
    This PR changes that behavior by shifting to the filter title as unique
    identifier and adding the filter prefix as optional data-attribute
    that’s only used for building the actual filtering-url-parameters.
    
    Old Behavior:
    - Filter title is used as option title
    - Filter prefix is used as value-attribute
    
    New Behavior:
    - Filter title is used as option title
    - Filter title is used as value-attribute
    - Filter prefix is included as data-attribute
    
    * Fix code indenting 4a7db7a
    
    * Improve construction of comparison array ccc5e9e
    
    * Fix code indenting e56bdde
    
    * Use „data-comparison“ as unique identifier of the chosen comparison mode 	d37e0b8
    
    Use the „data-comparison“-attribute as unique identifier for the chosen
    comparison mode of a filtering instance - both in the selectbox and the
    list of context help texts.
    
    The „value“-attribute of the comparison mode selectbox now again is
    used for serving the actual filter prefix used to construct the
    filtering-parameters in the url.
    
    * Remove leading whitespace from filter value input field ac61c11
    twiro authored and nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    51ba356 View commit details
    Browse the repository at this point in the history
  7. Lock/unlock tables when editing entries (symphonycms#2585)

    When editing an entry, Symphony will iterate over all fields, delete existing data first, then insert a new row for the field's data. So there will always be a time slot without field data. If multiple processes edit the same entry, this means a race condition that may lead to data being corrupted in several ways (also depending on the field type). Locking the table solves the issue.
    
    Fixes symphonycms#2472
    michael-e authored and nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    4b5067f View commit details
    Browse the repository at this point in the history
  8. Use $_SERVER[] instead of getenv()

    $_SERVER must hold the content we are looking for, while getenv does not
    have to. Most server SAPI implementation will look into the same array
    for those values, but some does not.
    
    Fixes symphonycms#2569
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    7bf5c07 View commit details
    Browse the repository at this point in the history
  9. Provide an extension point to $_SERVER reads

    As discussed in symphonycms#2569, this commit adds a new function, server_safe,
    which could potentially server as a safe way to get $_SERVER values.
    
    Right now, the only storage used is $_SERVER, but that could change in
    the future.
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    2f1a3b3 View commit details
    Browse the repository at this point in the history
  10. Whitespace fixes

    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    cf942a9 View commit details
    Browse the repository at this point in the history
  11. Make sure the DIRROOT constant ends with a /

    This should make is easier to use it.
    
    Re: symphonycms#2591
    nitriques committed May 31, 2016
    3 Configuration menu
    Copy the full SHA
    b6d9edb View commit details
    Browse the repository at this point in the history
  12. Fix root-dir parameter potential double /

    No need to edit the DIRROOT anymore: it will always end with /
    
    Re: symphonycms#2591
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    2148a32 View commit details
    Browse the repository at this point in the history
  13. Added workspace-dir parameter

    This value is safe to use in templates: it will reflect the path to the
    workspace according to the DIRROOT.
    
    Fixes symphonycms#2591
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    f9b5b6e View commit details
    Browse the repository at this point in the history
  14. Use DIRROOT for cookie path

    This will prevent the system from getting the same values across
    multiple places
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    34aeff3 View commit details
    Browse the repository at this point in the history
  15. Fix cookie safe url creation

    Calling rawurlencode is not enought, since it will encode / as %2F.
    
    Slashes needs to be respected, but any non url-friendly value must be
    encoded.
    nitriques committed May 31, 2016
    Configuration menu
    Copy the full SHA
    a2f2323 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2016

  1. Split out the http protocol logic into a constant

    This extraction creates a new constant, HTTP_PROTO, whill which will
    either hold http: or https:
    
    The URL constant value will remain unchanged.
    
    Re: 2591
    nitriques committed Jun 4, 2016
    Configuration menu
    Copy the full SHA
    e23f2f2 View commit details
    Browse the repository at this point in the history
  2. Restore sanity in url paths

    After much debate in symphonycms#2591 we want to keep the current interface as much
    as previous version.
    
    This commit makes it so the only changes from 2.6.7 is the addition of
    the `workspace-path` parameter.
    
    Here's a list of the affected commits
    
    b35eba8 The `root-dir` parameter has
    been removed
    b6d9edb as been reverted and restored
    to the original 9f1147d value
    2148a32 has been reverted
    34aeff3 has been modified to
    accomodate potential empty value
    
    This will hopefully close symphonycms#2591
    nitriques committed Jun 4, 2016
    Configuration menu
    Copy the full SHA
    72801b4 View commit details
    Browse the repository at this point in the history
  3. Fixed double ticks in SQL query

    MySQL::delete() already adds ticks around the table name.
    No need to do it twice
    nitriques committed Jun 4, 2016
    Configuration menu
    Copy the full SHA
    29a70c1 View commit details
    Browse the repository at this point in the history
  4. Remove trailing slash from safe cookie path

    This fix continues what 72801b4
    started.
    nitriques committed Jun 4, 2016
    Configuration menu
    Copy the full SHA
    a58ff6b View commit details
    Browse the repository at this point in the history
  5. Remove mcrypt as it is not maintained

    See https://wiki.php.net/rfc/mcrypt-viking-funeral
    
    Also rewrote the logic a bit to fix when a valid source fails to produce
    an output
    
    Re 5a61bf
    cc @siimsoni
    nitriques committed Jun 4, 2016
    Configuration menu
    Copy the full SHA
    d6118c0 View commit details
    Browse the repository at this point in the history
  6. Fix stupid typo

    nitriques committed Jun 4, 2016
    Configuration menu
    Copy the full SHA
    8ef1e28 View commit details
    Browse the repository at this point in the history
  7. Make sure we are dealing with arrays

    This prevents nasty crashes
    nitriques committed Jun 4, 2016
    Configuration menu
    Copy the full SHA
    78d1a1c View commit details
    Browse the repository at this point in the history
  8. Added missing $_REQUEST when fixing magic_quotes

    $_REQUEST holds a copy of the data, so we need to add it too!
    
    cc @brendo @michael-e
    nitriques committed Jun 4, 2016
    2 Configuration menu
    Copy the full SHA
    b283df9 View commit details
    Browse the repository at this point in the history
  9. Fixing potential XSS

    This issue has been discovered by @hyp3rlinx
    
    Script and html injection was possible, when the user was authenticated
    nitriques committed Jun 4, 2016
    Configuration menu
    Copy the full SHA
    0f27412 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2016

  1. Added 2.7.0 migration file

    nitriques committed Jun 5, 2016
    Configuration menu
    Copy the full SHA
    06371ab View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2016

  1. 9 Configuration menu
    Copy the full SHA
    581c99c View commit details
    Browse the repository at this point in the history
  2. Sanitize error message

    This prevents XSS from error message, which can be remote messages
    nitriques committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    fecc61e View commit details
    Browse the repository at this point in the history
  3. Wrap exceptions xml message in CDATA

    Exceptions can come from remote servers (like MySQL or SMTP) and can
    contain invalid xml data.
    
    User exceptions can also break this rule. As a safety precaution, we
    will wrap message just before ouput.
    
    Also, it's worthy to say that multiple calls to
    General::General::wrapInCDATA() is safe.
    
    Fixes symphonycms#2518
    nitriques committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    2d8d5e0 View commit details
    Browse the repository at this point in the history
  4. Delete __actionIndex from authors content page

    It does not have any purpose now since we do not even have a
    with-selected dropdown anymore on the index page.
    
    Fixes symphonycms#2573
    nitriques committed Jun 6, 2016
    Configuration menu
    Copy the full SHA
    226429d View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2016

  1. Output password and email even when auth == 0

    This will prevent overwriting the previous values
    nitriques committed Jun 7, 2016
    Configuration menu
    Copy the full SHA
    3979c10 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8da82f6 View commit details
    Browse the repository at this point in the history
  3. Make pickable hidden forms elements readonly

    Not visible element should be made readonly, since the user can't edit
    them anyways.
    
    This fixes a problem where Chrome would auto-fill hidden input and the
    value would be saved without the user ever seeing it.
    
    We already tried to fix the problem usign a standard solution
    (auto-complete="off", symphonycms#1843 and symphonycms#1841) but it does not work. We also tried a non-standard
    solution (symphonycms#2258) which was rejected.
    
    This change only uses standard solution, even thought it relies on
    javascript to make things works (it should not be a problem since the
    backend now heavily relies on javascript)
    nitriques committed Jun 7, 2016
    Configuration menu
    Copy the full SHA
    301d2b7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4fb94f4 View commit details
    Browse the repository at this point in the history
  5. Updated grunt deps

    nitriques committed Jun 7, 2016
    Configuration menu
    Copy the full SHA
    1b0e361 View commit details
    Browse the repository at this point in the history
  6. Added a grunt banner

    Also added a grunt task to get the current commit id we have building on
    nitriques committed Jun 7, 2016
    Configuration menu
    Copy the full SHA
    2afebde View commit details
    Browse the repository at this point in the history
  7. New assets build

    nitriques committed Jun 7, 2016
    Configuration menu
    Copy the full SHA
    cf90c7a View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2016

  1. Tag list field: accept an array of tags (symphonycms#2602)

    * Accept an array of tags 189b387
    
    While the tag list field always returned string (parameter pool) and array values (XML) in the output, it did only accept a string of tags on post. This commit extends the field to accept an array of tags as well which is helpful, if you are building a tag list widget on the front-end and would like to post back to the system.
    
    This change is supposed to be backwards compatible (it doesn't change the behaviour for posted string values).
    
    * Fix whitespace 49a5200
    nilshoerrmann authored and nitriques committed Jun 17, 2016
    Configuration menu
    Copy the full SHA
    7e9c94e View commit details
    Browse the repository at this point in the history
  2. Fix SQL problem with AND (+) operation

    The SQL generated by the code introduce in
    786d1cc contained errors:
    
    1. A superflous ' was present arount the $bit part twice
    2. A opening parenthesis ( was missing at the start of the WHERE clause
    
    Re symphonycms#2602
    
    Found when reviewing 7e9c94e
    nitriques committed Jun 17, 2016
    Configuration menu
    Copy the full SHA
    0e299c6 View commit details
    Browse the repository at this point in the history
  3. Refactored user data parsing

    Removing code duplication
    
    Re symphonycms#2602
    nitriques committed Jun 17, 2016
    Configuration menu
    Copy the full SHA
    558b5d7 View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2016

  1. Fix broken alignment

    nitriques committed Jun 21, 2016
    Configuration menu
    Copy the full SHA
    9c8679f View commit details
    Browse the repository at this point in the history
  2. Removed unecessary div. qualifier

    It's redundant and totally not needed.
    Reduces possible reuse.
    nitriques committed Jun 21, 2016
    10 Configuration menu
    Copy the full SHA
    5b9e33c View commit details
    Browse the repository at this point in the history
  3. New assets build

    nitriques committed Jun 21, 2016
    Configuration menu
    Copy the full SHA
    6aa775c View commit details
    Browse the repository at this point in the history
  4. Fix symphonycms#2603 for real

    nitriques committed Jun 21, 2016
    Configuration menu
    Copy the full SHA
    93ac344 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    81b0b68 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2016

  1. Standardize EOL in build

    nitriques committed Jun 22, 2016
    Configuration menu
    Copy the full SHA
    1f6ae8c View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2016

  1. Supress warning when chmod does not work

    chmod can fail for numerous reason, like when the user running php does
    not have proper rights on the filesystem.
    nitriques committed Jul 7, 2016
    Configuration menu
    Copy the full SHA
    52893d5 View commit details
    Browse the repository at this point in the history
  2. Change default permission in uploadFile to 0644

    0777 is a dangerous settings and should try to be avoided as a default
    value.
    
    Re: symphonycms/jit_image_manipulation#131
    nitriques committed Jul 7, 2016
    Configuration menu
    Copy the full SHA
    255b6dd View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2016

  1. Configuration menu
    Copy the full SHA
    0c9d32a View commit details
    Browse the repository at this point in the history
  2. redirect with a /

    ChoboHub committed Jul 19, 2016
    Configuration menu
    Copy the full SHA
    6a988c1 View commit details
    Browse the repository at this point in the history